public enum GcPersist extends Enum<GcPersist>
| Enum Constant and Description | 
|---|
| defaultToPersistableClassDefaultFieldPersistDefault to the class level behavior. | 
| dontPersistDon't persist them. | 
| doPersistDo persist them. | 
| persistIfPersistableFieldpersist the field if it has the persistable field annotation | 
| selectButDontPersistDon't persist them. | 
| Modifier and Type | Method and Description | 
|---|---|
| static GcPersist | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static GcPersist[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final GcPersist doPersist
public static final GcPersist dontPersist
public static final GcPersist selectButDontPersist
public static final GcPersist defaultToPersistableClassDefaultFieldPersist
public static final GcPersist persistIfPersistableField
public static GcPersist[] values()
for (GcPersist c : GcPersist.values()) System.out.println(c);
public static GcPersist valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 Internet2. All rights reserved.