Enum Class DDC.TenantMode

java.lang.Object
java.lang.Enum<DDC.TenantMode>
com.saperion.intf.DDC.TenantMode
All Implemented Interfaces:
Serializable, Comparable<DDC.TenantMode>, Constable
Enclosing interface:
DDC

public static enum DDC.TenantMode extends Enum<DDC.TenantMode>
DDC tenant modes.
  • Enum Constant Details

    • SPECIFIC

      public static final DDC.TenantMode SPECIFIC
      Each tenant uses a separate database table.
    • SHARED

      public static final DDC.TenantMode SHARED
      All tenants share the values of the table.
    • COMBINED

      public static final DDC.TenantMode COMBINED
      All tenants use the same table, but are separated by SYSCLIENT field.
  • Method Details

    • values

      public static DDC.TenantMode[] 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 DDC.TenantMode 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