public enum Resources extends java.lang.Enum<Resources>
Enum Constant and Description |
---|
ALARM
An alarm triggered in the service.
|
ASSET
Represents a tracked entity.
|
ASSET_HISTORY
To get listing of events for tracked assets.
|
BEACON |
BUNDLE |
CONTACT_LIST
Each element is a list containing contacts.
|
CUSTOMER
Details on customer accounts.
|
CUSTOMER_USER |
DEVICE
Represents a source of sensor observations.
|
DEVICE_COMMAND |
DEVICE_HISTORY
Observations received from a device.
|
DEVICE_PROFILE |
EVENT |
EVENT_HISTORY |
GROUP
A grouping of assets.
|
LIST
A listing of assets.
|
LOCATION |
LOG |
POSITION
Sensor observation, with position and other properties.
|
PROPERTY |
PROPERTY_TYPE
Definition of type for asset properties.
|
PUSH_SUBSCRIPTION
Subscription to get push updated to a client device.
|
ROLE
Role for user entities, defining permissions.
|
RULE
Unit of service logic.
|
RULE_TEMPLATE
Data about templates for instantiating rules.
|
TAG |
TRACK |
TYPE
Asset type, defining properties.
|
ZONE
Geographical area, for use in geo-fence and other location-based logic.
|
ZONE_TYPE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static Resources |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Resources[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Resources ALARM
public static final Resources ASSET
public static final Resources ASSET_HISTORY
public static final Resources BEACON
public static final Resources BUNDLE
public static final Resources CONTACT_LIST
public static final Resources CUSTOMER
public static final Resources CUSTOMER_USER
public static final Resources DEVICE
public static final Resources DEVICE_COMMAND
public static final Resources DEVICE_HISTORY
public static final Resources DEVICE_PROFILE
public static final Resources EVENT
public static final Resources EVENT_HISTORY
public static final Resources GROUP
public static final Resources LIST
public static final Resources LOCATION
public static final Resources LOG
public static final Resources POSITION
public static final Resources PROPERTY
public static final Resources PROPERTY_TYPE
public static final Resources PUSH_SUBSCRIPTION
public static final Resources ROLE
public static final Resources RULE
public static final Resources RULE_TEMPLATE
public static final Resources TAG
public static final Resources TRACK
public static final Resources TYPE
public static final Resources ZONE
public static final Resources ZONE_TYPE
public static Resources[] values()
for (Resources c : Resources.values()) System.out.println(c);
public static Resources valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()