Enum Datatype.UnderrideLevel
- java.lang.Object
-
- java.lang.Enum<Datatype.UnderrideLevel>
-
- org.inferred.freebuilder.processor.Datatype.UnderrideLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Datatype.UnderrideLevel>
- Enclosing class:
- Datatype
public static enum Datatype.UnderrideLevel extends java.lang.Enum<Datatype.UnderrideLevel>
How compulsory the underride is.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSENTThere is no underride.FINALThe underride is declared final.OVERRIDEABLEThe underride can be overridden (viz.
-
Constructor Summary
Constructors Modifier Constructor Description privateUnderrideLevel()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Datatype.UnderrideLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Datatype.UnderrideLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABSENT
public static final Datatype.UnderrideLevel ABSENT
There is no underride.
-
OVERRIDEABLE
public static final Datatype.UnderrideLevel OVERRIDEABLE
The underride can be overridden (viz. to respect Partials).
-
FINAL
public static final Datatype.UnderrideLevel FINAL
The underride is declared final.
-
-
Method Detail
-
values
public static Datatype.UnderrideLevel[] 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.UnderrideLevel c : Datatype.UnderrideLevel.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.UnderrideLevel 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
-
-