Enum MicroProfileRestClientEnricher.AccessibleType
- java.lang.Object
-
- java.lang.Enum<MicroProfileRestClientEnricher.AccessibleType>
-
- io.quarkus.rest.client.reactive.deployment.MicroProfileRestClientEnricher.AccessibleType
-
- All Implemented Interfaces:
Serializable,Comparable<MicroProfileRestClientEnricher.AccessibleType>
- Enclosing class:
- MicroProfileRestClientEnricher
static enum MicroProfileRestClientEnricher.AccessibleType extends Enum<MicroProfileRestClientEnricher.AccessibleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INTERFACE_METHODMETHOD_PARAMETERSTATIC_METHOD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MicroProfileRestClientEnricher.AccessibleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MicroProfileRestClientEnricher.AccessibleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERFACE_METHOD
public static final MicroProfileRestClientEnricher.AccessibleType INTERFACE_METHOD
-
STATIC_METHOD
public static final MicroProfileRestClientEnricher.AccessibleType STATIC_METHOD
-
METHOD_PARAMETER
public static final MicroProfileRestClientEnricher.AccessibleType METHOD_PARAMETER
-
-
Method Detail
-
values
public static MicroProfileRestClientEnricher.AccessibleType[] 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 (MicroProfileRestClientEnricher.AccessibleType c : MicroProfileRestClientEnricher.AccessibleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MicroProfileRestClientEnricher.AccessibleType 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
-
-