Package io.quarkus.arc.processor
Enum ResourceOutput.Resource.SpecialType
- java.lang.Object
-
- java.lang.Enum<ResourceOutput.Resource.SpecialType>
-
- io.quarkus.arc.processor.ResourceOutput.Resource.SpecialType
-
- All Implemented Interfaces:
Serializable,Comparable<ResourceOutput.Resource.SpecialType>
- Enclosing interface:
- ResourceOutput.Resource
public static enum ResourceOutput.Resource.SpecialType extends Enum<ResourceOutput.Resource.SpecialType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEANCLIENT_PROXYDECORATOR_BEANINTERCEPTOR_BEANOBSERVERSUBCLASS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceOutput.Resource.SpecialTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ResourceOutput.Resource.SpecialType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEAN
public static final ResourceOutput.Resource.SpecialType BEAN
-
INTERCEPTOR_BEAN
public static final ResourceOutput.Resource.SpecialType INTERCEPTOR_BEAN
-
DECORATOR_BEAN
public static final ResourceOutput.Resource.SpecialType DECORATOR_BEAN
-
OBSERVER
public static final ResourceOutput.Resource.SpecialType OBSERVER
-
CLIENT_PROXY
public static final ResourceOutput.Resource.SpecialType CLIENT_PROXY
-
SUBCLASS
public static final ResourceOutput.Resource.SpecialType SUBCLASS
-
-
Method Detail
-
values
public static ResourceOutput.Resource.SpecialType[] 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 (ResourceOutput.Resource.SpecialType c : ResourceOutput.Resource.SpecialType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceOutput.Resource.SpecialType 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
-
-