Package com.streambase.liveview.client
Enum SemanticInterpretation.WellKnownSemantics
- java.lang.Object
-
- java.lang.Enum<SemanticInterpretation.WellKnownSemantics>
-
- com.streambase.liveview.client.SemanticInterpretation.WellKnownSemantics
-
- All Implemented Interfaces:
Serializable
,Comparable<SemanticInterpretation.WellKnownSemantics>
- Enclosing class:
- SemanticInterpretation
public static enum SemanticInterpretation.WellKnownSemantics extends Enum<SemanticInterpretation.WellKnownSemantics>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CURRENCY
LATITUDE
LONGITUDE
TEMPERATURE
TIMESTAMP_ABSOLUTE
TIMESTAMP_INTERVAL
TIMESTAMP_RELATIVE
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SemanticInterpretation.WellKnownSemantics
valueOf(String name)
Returns the enum constant of this type with the specified name.static SemanticInterpretation.WellKnownSemantics[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TIMESTAMP_ABSOLUTE
public static final SemanticInterpretation.WellKnownSemantics TIMESTAMP_ABSOLUTE
-
TIMESTAMP_RELATIVE
@Deprecated public static final SemanticInterpretation.WellKnownSemantics TIMESTAMP_RELATIVE
Deprecated.
-
TIMESTAMP_INTERVAL
public static final SemanticInterpretation.WellKnownSemantics TIMESTAMP_INTERVAL
-
CURRENCY
public static final SemanticInterpretation.WellKnownSemantics CURRENCY
-
TEMPERATURE
public static final SemanticInterpretation.WellKnownSemantics TEMPERATURE
-
LATITUDE
public static final SemanticInterpretation.WellKnownSemantics LATITUDE
-
LONGITUDE
public static final SemanticInterpretation.WellKnownSemantics LONGITUDE
-
-
Method Detail
-
values
public static SemanticInterpretation.WellKnownSemantics[] 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 (SemanticInterpretation.WellKnownSemantics c : SemanticInterpretation.WellKnownSemantics.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SemanticInterpretation.WellKnownSemantics valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-