Package io.adminshell.aas.v3.model
Enum DataTypeIEC61360
- java.lang.Object
-
- java.lang.Enum<DataTypeIEC61360>
-
- io.adminshell.aas.v3.model.DataTypeIEC61360
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataTypeIEC61360>
public enum DataTypeIEC61360 extends java.lang.Enum<DataTypeIEC61360>
Enumeration of all IEC 61360 defined data types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEANDATEINTEGER_COUNTINTEGER_CURRENCYINTEGER_MEASURERATIONALRATIONAL_MEASUREREAL_COUNTREAL_CURRENCYREAL_MEASURESTRINGSTRING_TRANSLATABLETIMETIMESTAMPURL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataTypeIEC61360valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataTypeIEC61360[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final DataTypeIEC61360 BOOLEAN
-
DATE
public static final DataTypeIEC61360 DATE
-
INTEGER_COUNT
public static final DataTypeIEC61360 INTEGER_COUNT
-
INTEGER_CURRENCY
public static final DataTypeIEC61360 INTEGER_CURRENCY
-
INTEGER_MEASURE
public static final DataTypeIEC61360 INTEGER_MEASURE
-
RATIONAL
public static final DataTypeIEC61360 RATIONAL
-
RATIONAL_MEASURE
public static final DataTypeIEC61360 RATIONAL_MEASURE
-
REAL_COUNT
public static final DataTypeIEC61360 REAL_COUNT
-
REAL_CURRENCY
public static final DataTypeIEC61360 REAL_CURRENCY
-
REAL_MEASURE
public static final DataTypeIEC61360 REAL_MEASURE
-
STRING
public static final DataTypeIEC61360 STRING
-
STRING_TRANSLATABLE
public static final DataTypeIEC61360 STRING_TRANSLATABLE
-
TIME
public static final DataTypeIEC61360 TIME
-
TIMESTAMP
public static final DataTypeIEC61360 TIMESTAMP
-
URL
public static final DataTypeIEC61360 URL
-
-
Method Detail
-
values
public static DataTypeIEC61360[] 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 (DataTypeIEC61360 c : DataTypeIEC61360.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataTypeIEC61360 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
-
-