Enum Class Pattern.PrimitiveConversionRoute
java.lang.Object
java.lang.Enum<Pattern.PrimitiveConversionRoute>
org.aspectj.org.eclipse.jdt.internal.compiler.ast.Pattern.PrimitiveConversionRoute
- All Implemented Interfaces:
Serializable,Comparable<Pattern.PrimitiveConversionRoute>,java.lang.constant.Constable
- Enclosing class:
Pattern
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static Pattern.PrimitiveConversionRoute[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IDENTITY_CONVERSION
-
WIDENING_PRIMITIVE_CONVERSION
-
NARROWING_PRIMITVE_CONVERSION
-
WIDENING_AND_NARROWING_PRIMITIVE_CONVERSION
-
BOXING_CONVERSION
-
BOXING_CONVERSION_AND_WIDENING_REFERENCE_CONVERSION
public static final Pattern.PrimitiveConversionRoute BOXING_CONVERSION_AND_WIDENING_REFERENCE_CONVERSION -
WIDENING_REFERENCE_AND_UNBOXING_COVERSION
-
WIDENING_REFERENCE_AND_UNBOXING_COVERSION_AND_WIDENING_PRIMITIVE_CONVERSION
public static final Pattern.PrimitiveConversionRoute WIDENING_REFERENCE_AND_UNBOXING_COVERSION_AND_WIDENING_PRIMITIVE_CONVERSION -
NARROWING_AND_UNBOXING_CONVERSION
-
UNBOXING_CONVERSION
-
UNBOXING_AND_WIDENING_PRIMITIVE_CONVERSION
-
NO_CONVERSION_ROUTE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-