Enum Datatype.StandardMethod
- java.lang.Object
-
- java.lang.Enum<Datatype.StandardMethod>
-
- org.inferred.freebuilder.processor.Datatype.StandardMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Datatype.StandardMethod>
- Enclosing class:
- Datatype
public static enum Datatype.StandardMethod extends java.lang.Enum<Datatype.StandardMethod>
Standard Java methods that may be underridden.
-
-
Constructor Summary
Constructors Modifier Constructor Description privateStandardMethod()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Datatype.StandardMethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Datatype.StandardMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TO_STRING
public static final Datatype.StandardMethod TO_STRING
-
HASH_CODE
public static final Datatype.StandardMethod HASH_CODE
-
EQUALS
public static final Datatype.StandardMethod EQUALS
-
-
Method Detail
-
values
public static Datatype.StandardMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Datatype.StandardMethod c : Datatype.StandardMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Datatype.StandardMethod valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-