Enum Class SandboxAttrGmoPersistence

java.lang.Object
java.lang.Enum<SandboxAttrGmoPersistence>
io.higson.runtime.sandbox.SandboxAttrGmoPersistence
All Implemented Interfaces:
Serializable, Comparable<SandboxAttrGmoPersistence>, Constable

public enum SandboxAttrGmoPersistence extends Enum<SandboxAttrGmoPersistence>
Author:
przemek hertel
  • Enum Constant Details

    • NO

      public static final SandboxAttrGmoPersistence NO
      Attribute is transient, NOT included in GMO model.
    • YES

      public static final SandboxAttrGmoPersistence YES
      Attribute is included in GMO model - intented for entity attributes or collections.
    • GENERIC

      public static final SandboxAttrGmoPersistence GENERIC
      Attribute is included in GMO model - persisted in generic way (json)
    • DB_COLUMN

      public static final SandboxAttrGmoPersistence DB_COLUMN
      Attribute is included in GMO model - persisted in database column.
  • Method Details

    • values

      public static SandboxAttrGmoPersistence[] 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 SandboxAttrGmoPersistence 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
    • code

      public static String code(SandboxAttrGmoPersistence value)
    • from

      public static SandboxAttrGmoPersistence from(String code)
    • isGmoManaged

      public static boolean isGmoManaged(SandboxAttrGmoPersistence value)
    • isGmoManaged

      public static boolean isGmoManaged(String code)