Enum AnnotationInjections.InjectAnnotation.Where
- java.lang.Object
-
- java.lang.Enum<AnnotationInjections.InjectAnnotation.Where>
-
- org.immutables.value.processor.meta.AnnotationInjections.InjectAnnotation.Where
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AnnotationInjections.InjectAnnotation.Where>
- Enclosing class:
- AnnotationInjections.InjectAnnotation
public static enum AnnotationInjections.InjectAnnotation.Where extends java.lang.Enum<AnnotationInjections.InjectAnnotation.Where>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESSORBUILDER_TYPECONSTRUCTORCONSTRUCTOR_PARAMETERELEMENT_INITIALIZERFIELDIMMUTABLE_TYPEINITIALIZERMODIFIABLE_TYPESYNTHETIC_FIELDS
-
Constructor Summary
Constructors Modifier Constructor Description privateWhere()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AnnotationInjections.InjectAnnotation.WherevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AnnotationInjections.InjectAnnotation.Where[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIELD
public static final AnnotationInjections.InjectAnnotation.Where FIELD
-
ACCESSOR
public static final AnnotationInjections.InjectAnnotation.Where ACCESSOR
-
SYNTHETIC_FIELDS
public static final AnnotationInjections.InjectAnnotation.Where SYNTHETIC_FIELDS
-
CONSTRUCTOR_PARAMETER
public static final AnnotationInjections.InjectAnnotation.Where CONSTRUCTOR_PARAMETER
-
INITIALIZER
public static final AnnotationInjections.InjectAnnotation.Where INITIALIZER
-
ELEMENT_INITIALIZER
public static final AnnotationInjections.InjectAnnotation.Where ELEMENT_INITIALIZER
-
BUILDER_TYPE
public static final AnnotationInjections.InjectAnnotation.Where BUILDER_TYPE
-
IMMUTABLE_TYPE
public static final AnnotationInjections.InjectAnnotation.Where IMMUTABLE_TYPE
-
MODIFIABLE_TYPE
public static final AnnotationInjections.InjectAnnotation.Where MODIFIABLE_TYPE
-
CONSTRUCTOR
public static final AnnotationInjections.InjectAnnotation.Where CONSTRUCTOR
-
-
Method Detail
-
values
public static AnnotationInjections.InjectAnnotation.Where[] 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 (AnnotationInjections.InjectAnnotation.Where c : AnnotationInjections.InjectAnnotation.Where.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnnotationInjections.InjectAnnotation.Where 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
-
-