public enum InternalAnnotationCheckMode extends java.lang.Enum<InternalAnnotationCheckMode>
By default, the WARN mode is used.
| Enum Constant and Description |
|---|
ERROR
Error-level incompatibilities will be raised for elements regardless of being marked with an internal annotation.
|
SKIP
No checks will be performed on elements annotated with an internal annotation.
|
WARN
All error-level incompatibilities will be lowered to warnings for elements annotated with an internal annotation.
|
| Modifier and Type | Field and Description |
|---|---|
static java.util.List<java.lang.String> |
DEFAULT_INTERNAL_ANNOTATIONS |
static InternalAnnotationCheckMode |
DEFAULT_MODE |
| Modifier and Type | Method and Description |
|---|---|
static InternalAnnotationCheckMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InternalAnnotationCheckMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalAnnotationCheckMode SKIP
public static final InternalAnnotationCheckMode WARN
public static final InternalAnnotationCheckMode ERROR
public static final InternalAnnotationCheckMode DEFAULT_MODE
public static final java.util.List<java.lang.String> DEFAULT_INTERNAL_ANNOTATIONS
public static InternalAnnotationCheckMode[] values()
for (InternalAnnotationCheckMode c : InternalAnnotationCheckMode.values()) System.out.println(c);
public static InternalAnnotationCheckMode 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