Package io.quarkus.arc.processor
Enum BuiltinBean
- java.lang.Object
-
- java.lang.Enum<BuiltinBean>
-
- io.quarkus.arc.processor.BuiltinBean
-
- All Implemented Interfaces:
Serializable,Comparable<BuiltinBean>
public enum BuiltinBean extends Enum<BuiltinBean>
- Author:
- Martin Kouba
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBuiltinBean.GeneratorContext
-
Enum Constant Summary
Enum Constants Enum Constant Description BEANBEAN_MANAGEREVENTEVENT_METADATAINJECTION_POINTINSTANCEINTERCEPTED_BEANLISTRESOURCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanmatches(InjectionPointInfo injectionPoint)static BuiltinBeanresolve(InjectionPointInfo injectionPoint)static booleanresolvesTo(InjectionPointInfo injectionPoint)static BuiltinBeanvalueOf(String name)Returns the enum constant of this type with the specified name.static BuiltinBean[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final BuiltinBean INSTANCE
-
INJECTION_POINT
public static final BuiltinBean INJECTION_POINT
-
BEAN
public static final BuiltinBean BEAN
-
INTERCEPTED_BEAN
public static final BuiltinBean INTERCEPTED_BEAN
-
BEAN_MANAGER
public static final BuiltinBean BEAN_MANAGER
-
EVENT
public static final BuiltinBean EVENT
-
RESOURCE
public static final BuiltinBean RESOURCE
-
EVENT_METADATA
public static final BuiltinBean EVENT_METADATA
-
LIST
public static final BuiltinBean LIST
-
-
Method Detail
-
values
public static BuiltinBean[] 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 (BuiltinBean c : BuiltinBean.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuiltinBean 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
-
matches
public boolean matches(InjectionPointInfo injectionPoint)
-
resolvesTo
public static boolean resolvesTo(InjectionPointInfo injectionPoint)
-
resolve
public static BuiltinBean resolve(InjectionPointInfo injectionPoint)
-
-