Package com.independentsoft.office.odf
Enum Class ConfigurationType
- All Implemented Interfaces:
Serializable,Comparable<ConfigurationType>,Constable
Represents a data type for a setting.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionContains a base64Binary value.A Boolean value may have either of the values true or false.Contains a dataTime value.Contains a double value.Contains a integer value.Contains a long value.Contains a short value.Contains a string value. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConfigurationTypeReturns the enum constant of this class with the specified name.static ConfigurationType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BOOLEAN
A Boolean value may have either of the values true or false. -
SHORT
Contains a short value. -
INT
Contains a integer value. -
LONG
Contains a long value. -
DOUBLE
Contains a double value. -
STRING
Contains a string value. -
DATE_TIME
Contains a dataTime value. -
BASE64_BINARY
Contains a base64Binary value.
-
-
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
-