public static enum SoftDeletable.Type extends Enum<SoftDeletable.Type>
| Enum Constant and Description |
|---|
ACTIVE
Indicates that the associated column is a column holding active state.
|
DELETED
Indicates that the associated column is a column holding deleted state.
|
| Modifier and Type | Method and Description |
|---|---|
static SoftDeletable.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SoftDeletable.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoftDeletable.Type DELETED
boolean.
This is the default type.public static final SoftDeletable.Type ACTIVE
boolean.public static SoftDeletable.Type[] values()
for (SoftDeletable.Type c : SoftDeletable.Type.values()) System.out.println(c);
public static SoftDeletable.Type 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 © 2015–2020 OmniFaces. All rights reserved.