public enum Immutability extends Enum<Immutability> implements Predicate<Object>
| Enum Constant and Description |
|---|
ABSTRACT_CLASS |
ANNOTATION |
CLASS |
COLLECTION |
OBJECT |
| Modifier and Type | Method and Description |
|---|---|
static Immutability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Immutability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Immutability OBJECT
public static final Immutability CLASS
public static final Immutability ABSTRACT_CLASS
public static final Immutability COLLECTION
public static final Immutability ANNOTATION
public static Immutability[] values()
for (Immutability c : Immutability.values()) System.out.println(c);
public static Immutability 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 © 2018 JBoss by Red Hat. All rights reserved.