Enum ReadProperty.PropertyDataTypeEnum
- java.lang.Object
-
- java.lang.Enum<ReadProperty.PropertyDataTypeEnum>
-
- de.iip_ecosphere.platform.support.semanticId.eclass.model.ReadProperty.PropertyDataTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ReadProperty.PropertyDataTypeEnum>
- Enclosing class:
- ReadProperty
public static enum ReadProperty.PropertyDataTypeEnum extends java.lang.Enum<ReadProperty.PropertyDataTypeEnum>
Gets or Sets propertyDataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classReadProperty.PropertyDataTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description AXIS_1DAXIS_2DAXIS_3DBLOBBOOLEANDATEFILEINTEGER_COUNT_INTEGER_CURRENCY_INTEGER_MEASURE_RATIONAL_COUNT_RATIONAL_MEASURE_REAL_COUNT_REAL_CURRENCY_REAL_MEASURE_REFERENCESTRINGSTRING_TRANSLATABLE_TIMETIMESTAMPURL
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringvalue
-
Constructor Summary
Constructors Modifier Constructor Description privatePropertyDataTypeEnum(java.lang.String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReadProperty.PropertyDataTypeEnumfromValue(java.lang.String input)java.lang.StringgetValue()java.lang.StringtoString()static ReadProperty.PropertyDataTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ReadProperty.PropertyDataTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AXIS_1D
public static final ReadProperty.PropertyDataTypeEnum AXIS_1D
-
AXIS_2D
public static final ReadProperty.PropertyDataTypeEnum AXIS_2D
-
AXIS_3D
public static final ReadProperty.PropertyDataTypeEnum AXIS_3D
-
BOOLEAN
public static final ReadProperty.PropertyDataTypeEnum BOOLEAN
-
DATE
public static final ReadProperty.PropertyDataTypeEnum DATE
-
INTEGER_COUNT_
public static final ReadProperty.PropertyDataTypeEnum INTEGER_COUNT_
-
INTEGER_CURRENCY_
public static final ReadProperty.PropertyDataTypeEnum INTEGER_CURRENCY_
-
INTEGER_MEASURE_
public static final ReadProperty.PropertyDataTypeEnum INTEGER_MEASURE_
-
RATIONAL_COUNT_
public static final ReadProperty.PropertyDataTypeEnum RATIONAL_COUNT_
-
RATIONAL_MEASURE_
public static final ReadProperty.PropertyDataTypeEnum RATIONAL_MEASURE_
-
REAL_COUNT_
public static final ReadProperty.PropertyDataTypeEnum REAL_COUNT_
-
REAL_CURRENCY_
public static final ReadProperty.PropertyDataTypeEnum REAL_CURRENCY_
-
REAL_MEASURE_
public static final ReadProperty.PropertyDataTypeEnum REAL_MEASURE_
-
REFERENCE
public static final ReadProperty.PropertyDataTypeEnum REFERENCE
-
STRING
public static final ReadProperty.PropertyDataTypeEnum STRING
-
STRING_TRANSLATABLE_
public static final ReadProperty.PropertyDataTypeEnum STRING_TRANSLATABLE_
-
TIME
public static final ReadProperty.PropertyDataTypeEnum TIME
-
TIMESTAMP
public static final ReadProperty.PropertyDataTypeEnum TIMESTAMP
-
URL
public static final ReadProperty.PropertyDataTypeEnum URL
-
FILE
public static final ReadProperty.PropertyDataTypeEnum FILE
-
BLOB
public static final ReadProperty.PropertyDataTypeEnum BLOB
-
-
Method Detail
-
values
public static ReadProperty.PropertyDataTypeEnum[] 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 (ReadProperty.PropertyDataTypeEnum c : ReadProperty.PropertyDataTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReadProperty.PropertyDataTypeEnum 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 namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ReadProperty.PropertyDataTypeEnum>
-
fromValue
public static ReadProperty.PropertyDataTypeEnum fromValue(java.lang.String input)
-
-