public static enum CICSProgram.TargetType extends java.lang.Enum<CICSProgram.TargetType>
CICSProgram
annotation.Enum Constant and Description |
---|
CDI
The target class is a CDI Bean
|
POJO
The target class is a Plain Old Java Object
|
SPRINGBEAN
The target class is a Spring Bean
|
UNSPECIFIED
The type of target class will be determined by the annotation processor.
|
Modifier and Type | Method and Description |
---|---|
static CICSProgram.TargetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CICSProgram.TargetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CICSProgram.TargetType POJO
public static final CICSProgram.TargetType SPRINGBEAN
public static final CICSProgram.TargetType CDI
public static final CICSProgram.TargetType UNSPECIFIED
public static CICSProgram.TargetType[] values()
for (CICSProgram.TargetType c : CICSProgram.TargetType.values()) System.out.println(c);
public static CICSProgram.TargetType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null