|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PropertyName>
org.jruby.embed.PropertyName
public enum PropertyName
Predefined keys of System properties to get configurations
Enum Constant Summary | |
---|---|
CLASSLOADER
A key to get/set the value for classloader policy. |
|
CLASSPATH
A key used to get/set classpath setting. |
|
COMPATVERSION
A key to get/set compatible version to Ruby. |
|
COMPILEMODE
A key to get/set compile mode. |
|
LAZINESS
A key to get/set variables/constants retrieval policy. |
|
LOCALCONTEXT_SCOPE
A key to get/set local context scope. |
|
LOCALVARIABLE_BEHAVIOR
A key to get/set local variable behavior. |
Method Summary | |
---|---|
static PropertyName |
getType(java.lang.String fqpn)
Returns a fully qualified property name that corresponds to a given enumerated type identifier. |
java.lang.String |
toString()
Returns the fully qualified property name of this enum constant. |
static PropertyName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PropertyName[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PropertyName CLASSPATH
public static final PropertyName LOCALCONTEXT_SCOPE
public static final PropertyName LOCALVARIABLE_BEHAVIOR
public static final PropertyName LAZINESS
public static final PropertyName CLASSLOADER
public static final PropertyName COMPILEMODE
public static final PropertyName COMPATVERSION
Method Detail |
---|
public static PropertyName[] values()
for (PropertyName c : PropertyName.values()) System.out.println(c);
public static PropertyName 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<PropertyName>
public static PropertyName getType(java.lang.String fqpn)
fqan
- fully qualified property name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |