public enum Typology extends Enum<Typology>
| Enum Constant and Description | 
|---|
| NOT_COMPLIANTMark an instantiator that doesn't behave like a  STANDARDnor aSERIALIZATION(e.g. | 
| SERIALIZATIONMark an instantiator used for serialization. | 
| STANDARDMark an instantiator used for standard instantiation (not calling a constructor). | 
| UNKNOWNNo 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–2017 Joe Walnes, Henri Tremblay, Leonardo Mesquita. All rights reserved.