public enum MetadataOption extends java.lang.Enum<MetadataOption>
Enum Constant and Description |
---|
ALL
Include all metadata in the response
|
DATA_TYPE
Include feature data_type in the response.
|
EFFECTIVE_TIME
Include feature effective_time in the response
|
FEATURE_STATUS
Include feature status of the feature value in the response
|
NAME
Include feature name in the response
|
NONE
Include no metadata in the response.
|
SLO_INFO
Include SLO Info in the response
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getJsonName() |
static MetadataOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetadataOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetadataOption NAME
public static final MetadataOption EFFECTIVE_TIME
public static final MetadataOption DATA_TYPE
public static final MetadataOption SLO_INFO
public static final MetadataOption FEATURE_STATUS
public static final MetadataOption ALL
public static final MetadataOption NONE
public static MetadataOption[] values()
for (MetadataOption c : MetadataOption.values()) System.out.println(c);
public static MetadataOption 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 getJsonName()