com.im.ijc.core/1 5.9.4

com.im.ijc.core.api.url
Enum StandardProperty

java.lang.Object
  extended by java.lang.Enum<StandardProperty>
      extended by com.im.ijc.core.api.url.StandardProperty
All Implemented Interfaces:
Serializable, Comparable<StandardProperty>

public enum StandardProperty
extends Enum<StandardProperty>


Enum Constant Summary
ACTION
           
DATA_TREE
           
PERMANENT_LIST
           
PERMANENT_QUERY
           
PROJECT
           
SCHEMA
           
SELECTED_ROW
           
VIEW
           
 
Method Summary
 String getName()
           
static StandardProperty valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StandardProperty[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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()

com.im.ijc.core/1 5.9.4