com.im.ijc.core.api.url
Enum StandardProperty
java.lang.Object
java.lang.Enum<StandardProperty>
com.im.ijc.core.api.url.StandardProperty
- All Implemented Interfaces:
- Serializable, Comparable<StandardProperty>
public enum StandardProperty
- extends Enum<StandardProperty>
ACTION
public static final StandardProperty ACTION
VIEW
public static final StandardProperty VIEW
PROJECT
public static final StandardProperty PROJECT
SCHEMA
public static final StandardProperty SCHEMA
DATA_TREE
public static final StandardProperty DATA_TREE
PERMANENT_QUERY
public static final StandardProperty PERMANENT_QUERY
PERMANENT_LIST
public static final StandardProperty PERMANENT_LIST
SELECTED_ROW
public static final StandardProperty SELECTED_ROW
values
public static StandardProperty[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (StandardProperty c : StandardProperty.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static StandardProperty valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
getName
public String getName()