public enum Typology extends Enum<Typology>
Enum Constant and Description |
---|
NOT_COMPLIANT
Mark an instantiator that doesn't behave like a
STANDARD nor a SERIALIZATION (e.g. |
SERIALIZATION
Mark an instantiator used for serialization.
|
STANDARD
Mark an instantiator used for standard instantiation (not calling a constructor).
|
UNKNOWN
No type specified on the instantiator class
|
Modifier and Type | Method and Description |
---|---|
static Typology |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Typology[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Typology STANDARD
public static final Typology SERIALIZATION
public static final Typology NOT_COMPLIANT
STANDARD
nor a SERIALIZATION
(e.g. calls a constructor, fails
all the time, etc.)public static final Typology UNKNOWN
public static Typology[] values()
for (Typology c : Typology.values()) System.out.println(c);
public static Typology 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 © 2006–2024 Joe Walnes, Henri Tremblay, Leonardo Mesquita. All rights reserved.