public enum PropertyScope extends Enum<PropertyScope>
| Enum Constant and Description |
|---|
DIMENSION_PROPERTY
A property that describes context of a measurement, e.g., the ID of a machine or a thing.
|
HEADER_PROPERTY
A property that defines meta-information about the event, for instance its occurrence time.
|
MEASUREMENT_PROPERTY
A property that contains (often quantitative) measurement values.
|
NONE
The property scope is not further described.
|
| Modifier and Type | Method and Description |
|---|---|
static PropertyScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyScope HEADER_PROPERTY
public static final PropertyScope DIMENSION_PROPERTY
public static final PropertyScope MEASUREMENT_PROPERTY
public static final PropertyScope NONE
public static PropertyScope[] values()
for (PropertyScope c : PropertyScope.values()) System.out.println(c);
public static PropertyScope valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.