|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CyProperty.SavePolicy>
org.cytoscape.property.CyProperty.SavePolicy
public static enum CyProperty.SavePolicy
SavePolicy specifies how the CyProperty will be saved, or if it will not be saved.
Enum Constant Summary | |
---|---|
CONFIG_DIR
These properties are loaded from and written to the default config directory and are user defaults. |
|
DO_NOT_SAVE
These properties are preset by Cytoscape to some default value and are never written out. |
|
SESSION_FILE
These properties will be loaded from and saved to session files. |
|
SESSION_FILE_AND_CONFIG_DIR
These properties will be loaded from and saved to session files and the default config directory. |
Method Summary | |
---|---|
static CyProperty.SavePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CyProperty.SavePolicy[] |
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 |
---|
public static final CyProperty.SavePolicy DO_NOT_SAVE
public static final CyProperty.SavePolicy CONFIG_DIR
public static final CyProperty.SavePolicy SESSION_FILE
public static final CyProperty.SavePolicy SESSION_FILE_AND_CONFIG_DIR
Method Detail |
---|
public static CyProperty.SavePolicy[] values()
for (CyProperty.SavePolicy c : CyProperty.SavePolicy.values()) System.out.println(c);
public static CyProperty.SavePolicy valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |