Enum AnnotationElement.AnnotationElementType
- java.lang.Object
-
- java.lang.Enum<AnnotationElement.AnnotationElementType>
-
- org.mapstruct.ap.internal.model.annotation.AnnotationElement.AnnotationElementType
-
- All Implemented Interfaces:
Serializable
,Comparable<AnnotationElement.AnnotationElementType>
- Enclosing class:
- AnnotationElement
public static enum AnnotationElement.AnnotationElementType extends Enum<AnnotationElement.AnnotationElementType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AnnotationElement.AnnotationElementType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AnnotationElement.AnnotationElementType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final AnnotationElement.AnnotationElementType BOOLEAN
-
BYTE
public static final AnnotationElement.AnnotationElementType BYTE
-
CHARACTER
public static final AnnotationElement.AnnotationElementType CHARACTER
-
CLASS
public static final AnnotationElement.AnnotationElementType CLASS
-
DOUBLE
public static final AnnotationElement.AnnotationElementType DOUBLE
-
ENUM
public static final AnnotationElement.AnnotationElementType ENUM
-
FLOAT
public static final AnnotationElement.AnnotationElementType FLOAT
-
INTEGER
public static final AnnotationElement.AnnotationElementType INTEGER
-
LONG
public static final AnnotationElement.AnnotationElementType LONG
-
SHORT
public static final AnnotationElement.AnnotationElementType SHORT
-
STRING
public static final AnnotationElement.AnnotationElementType STRING
-
-
Method Detail
-
values
public static AnnotationElement.AnnotationElementType[] 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 (AnnotationElement.AnnotationElementType c : AnnotationElement.AnnotationElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnnotationElement.AnnotationElementType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-