public enum ObjectType extends Enum<ObjectType>
Enum Constant and Description |
---|
ACTION_HOLDER |
ENDPOINT |
OBJECT |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectType ENDPOINT
public static final ObjectType ACTION_HOLDER
public static final ObjectType OBJECT
public static ObjectType[] values()
for (ObjectType c : ObjectType.values()) System.out.println(c);
public static ObjectType 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 int getValue()
Copyright © 2018 WSO2. All rights reserved.