public static enum DDC.TenantMode extends Enum<DDC.TenantMode>
Enum Constant and Description |
---|
COMBINED
All tenants use the same table, but are separated by SYSCLIENT field.
|
SHARED
All tenants share the values of the table.
|
SPECIFIC
Each tenant uses a separate database table.
|
Modifier and Type | Method and Description |
---|---|
static DDC.TenantMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DDC.TenantMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DDC.TenantMode SPECIFIC
public static final DDC.TenantMode SHARED
public static final DDC.TenantMode COMBINED
public static DDC.TenantMode[] values()
for (DDC.TenantMode c : DDC.TenantMode.values()) System.out.println(c);
public static DDC.TenantMode 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 © 2020 Hyland Software Germany GmbH. All rights reserved.