Enum EncodedElement.Tag
- java.lang.Object
-
- java.lang.Enum<EncodedElement.Tag>
-
- org.immutables.value.processor.encode.EncodedElement.Tag
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EncodedElement.Tag>
- Enclosing class:
- EncodedElement
static enum EncodedElement.Tag extends java.lang.Enum<EncodedElement.Tag>
-
-
Constructor Summary
Constructors Modifier Constructor Description privateTag()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EncodedElement.TagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EncodedElement.Tag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMPL
public static final EncodedElement.Tag IMPL
-
EXPOSE
public static final EncodedElement.Tag EXPOSE
-
BUILDER
public static final EncodedElement.Tag BUILDER
-
STATIC
public static final EncodedElement.Tag STATIC
-
PRIVATE
public static final EncodedElement.Tag PRIVATE
-
FINAL
public static final EncodedElement.Tag FINAL
-
BUILD
public static final EncodedElement.Tag BUILD
-
INIT
public static final EncodedElement.Tag INIT
-
FROM
public static final EncodedElement.Tag FROM
-
HELPER
public static final EncodedElement.Tag HELPER
-
FIELD
public static final EncodedElement.Tag FIELD
-
TO_STRING
public static final EncodedElement.Tag TO_STRING
-
HASH_CODE
public static final EncodedElement.Tag HASH_CODE
-
EQUALS
public static final EncodedElement.Tag EQUALS
-
COPY
public static final EncodedElement.Tag COPY
-
DEPLURALIZE
public static final EncodedElement.Tag DEPLURALIZE
-
SYNTH
public static final EncodedElement.Tag SYNTH
-
VIRTUAL
public static final EncodedElement.Tag VIRTUAL
-
IS_INIT
public static final EncodedElement.Tag IS_INIT
-
-
Method Detail
-
values
public static EncodedElement.Tag[] 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 (EncodedElement.Tag c : EncodedElement.Tag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncodedElement.Tag 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
-
-