public enum DataKeys extends Enum<DataKeys>
Enum Constant and Description |
---|
ARGS |
ATTRIBUTES |
CLASSNAME |
DESCRIPTION |
ERROR |
NAME |
NOTIFICATIONS |
OPERATIONS |
READ_WRITE |
RETURN_TYPE |
TYPE |
TYPES |
Modifier and Type | Method and Description |
---|---|
String |
getKey()
Get the key of the enum
|
static DataKeys |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataKeys DESCRIPTION
public static final DataKeys CLASSNAME
public static final DataKeys ERROR
public static final DataKeys NAME
public static final DataKeys TYPES
public static final DataKeys ARGS
public static final DataKeys RETURN_TYPE
public static final DataKeys OPERATIONS
public static final DataKeys ATTRIBUTES
public static final DataKeys NOTIFICATIONS
public static final DataKeys TYPE
public static final DataKeys READ_WRITE
public static DataKeys[] values()
for (DataKeys c : DataKeys.values()) System.out.println(c);
public static DataKeys 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 nullpublic String getKey()
Copyright © 2021. All rights reserved.