Enum Class OfflineSynchModeType
java.lang.Object
java.lang.Enum<OfflineSynchModeType>
dev.jcputney.elearning.parser.input.lom.properties.OfflineSynchModeType
- All Implemented Interfaces:
Serializable,Comparable<OfflineSynchModeType>,Constable
Enum representing the offlineSynchModeType simple type.
The following schema snippet defines the possible values:
<xs:simpleType name="offlineSynchModeType">
<xs:restriction base="xs:string">
<xs:enumeration value="most recent" />
<xs:enumeration value="simple" />
<xs:enumeration value="most complete" />
<xs:enumeration value="most satisfied" />
<xs:enumeration value="most done" />
<xs:enumeration value="best done " />
</xs:restriction>
</xs:simpleType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe offline synchronization mode is best done.The offline synchronization mode is the most complete.The offline synchronization mode is most done.The offline synchronization mode is the most recent.The offline synchronization mode is most satisfied.The offline synchronization mode is straightforward. -
Method Summary
Modifier and TypeMethodDescriptionstatic OfflineSynchModeTypeReturns the enum constant of this class with the specified name.static OfflineSynchModeType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MOST_RECENT
The offline synchronization mode is the most recent. -
SIMPLE
The offline synchronization mode is straightforward. -
MOST_COMPLETE
The offline synchronization mode is the most complete. -
MOST_SATISFIED
The offline synchronization mode is most satisfied. -
MOST_DONE
The offline synchronization mode is most done. -
BEST_DONE
The offline synchronization mode is best done.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-