public enum PersistenceType extends java.lang.Enum<PersistenceType>
| Modifier and Type | Field and Description | 
|---|---|
java.lang.String | 
name  | 
| Modifier and Type | Method and Description | 
|---|---|
static PersistenceType | 
get(java.lang.String name)  | 
static PersistenceType | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static PersistenceType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PersistenceType FILE
public static final PersistenceType VARIABLE
public static PersistenceType[] values()
for (PersistenceType c : PersistenceType.values()) System.out.println(c);
public static PersistenceType 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 namejava.lang.NullPointerException - if the argument is nullpublic static PersistenceType get(java.lang.String name)
Copyright © SAS Institute. All Rights Reserved.