public enum TypeCheckingMode extends Enum<TypeCheckingMode>
TypeChecked in general, but where only one or more methods are "dynamic". This allows the user
 to annotate the class itself then annotate only the methods which require exclusion.| Modifier and Type | Method and Description | 
|---|---|
static TypeCheckingMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TypeCheckingMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TypeCheckingMode PASS
public static final TypeCheckingMode SKIP
public static TypeCheckingMode[] values()
for (TypeCheckingMode c : TypeCheckingMode.values()) System.out.println(c);
public static TypeCheckingMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null