Package ipsk.db.speech
Enum Section.Order
- java.lang.Object
- 
- java.lang.Enum<Section.Order>
- 
- ipsk.db.speech.Section.Order
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<Section.Order>
 - Enclosing class:
- Section
 
 public static enum Section.Order extends java.lang.Enum<Section.Order> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description RANDOMRANDOMIZEDSEQUENTIAL
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Section.OrdergetByValue(java.lang.String value)java.lang.StringtoString()java.lang.Stringvalue()static Section.OrdervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Section.Order[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SEQUENTIALpublic static final Section.Order SEQUENTIAL 
 - 
RANDOMpublic static final Section.Order RANDOM 
 - 
RANDOMIZEDpublic static final Section.Order RANDOMIZED 
 
- 
 - 
Method Detail- 
valuespublic static Section.Order[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Section.Order c : Section.Order.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Section.Order valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
valuepublic java.lang.String value() 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Enum<Section.Order>
 
 - 
getByValuepublic static Section.Order getByValue(java.lang.String value) 
 
- 
 
-