public static enum AnnotationUseStyleCheck.ClosingParens extends Enum<AnnotationUseStyleCheck.ClosingParens>
Enum Constant and Description |
---|
ALWAYS
With parens example
|
IGNORE
Mixed styles.
|
NEVER
Without parens example
|
Modifier and Type | Method and Description |
---|---|
static AnnotationUseStyleCheck.ClosingParens |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationUseStyleCheck.ClosingParens[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationUseStyleCheck.ClosingParens ALWAYS
@Deprecated().
public static final AnnotationUseStyleCheck.ClosingParens NEVER
@Deprecated.
public static final AnnotationUseStyleCheck.ClosingParens IGNORE
public static AnnotationUseStyleCheck.ClosingParens[] values()
for (AnnotationUseStyleCheck.ClosingParens c : AnnotationUseStyleCheck.ClosingParens.values()) System.out.println(c);
public static AnnotationUseStyleCheck.ClosingParens 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 nullCopyright © 2001–2018. All rights reserved.