Enum Class GcPersist

java.lang.Object
java.lang.Enum<GcPersist>
edu.internet2.middleware.grouperClient.jdbc.GcPersist
All Implemented Interfaces:
Serializable, Comparable<GcPersist>, java.lang.constant.Constable

public enum GcPersist extends Enum<GcPersist>
Whether fields should be persisted to the database or not.
  • Enum Constant Details

    • doPersist

      public static final GcPersist doPersist
      Do persist them.
    • dontPersist

      public static final GcPersist dontPersist
      Don't persist them.
    • selectButDontPersist

      public static final GcPersist selectButDontPersist
      Don't persist them.
    • defaultToPersistableClassDefaultFieldPersist

      public static final GcPersist defaultToPersistableClassDefaultFieldPersist
      Default to the class level behavior.
    • persistIfPersistableField

      public static final GcPersist persistIfPersistableField
      persist the field if it has the persistable field annotation
  • Method Details

    • values

      public static GcPersist[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static GcPersist valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null