public enum NaturalIdMutability extends java.lang.Enum<NaturalIdMutability>
| Enum Constant and Description |
|---|
IMMUTABLE
The attribute is part of a immutable natural id
|
MUTABLE
The attribute is part of a mutable natural id
|
NOT_NATURAL_ID
The attribute is not part of any kind of natural id.
|
| Modifier and Type | Method and Description |
|---|---|
static NaturalIdMutability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NaturalIdMutability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NaturalIdMutability MUTABLE
public static final NaturalIdMutability IMMUTABLE
public static final NaturalIdMutability NOT_NATURAL_ID
public static NaturalIdMutability[] values()
for (NaturalIdMutability c : NaturalIdMutability.values()) System.out.println(c);
public static NaturalIdMutability valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.