com.puppycrawl.tools.checkstyle.checks.blocks
Class RightCurlyOption
- Serializable
public final class RightCurlyOption
Represents the options for placing the right curly brace '}'
.
Version:
- Oliver Burn
ALONE
public static final RightCurlyOption ALONE
Represents the policy that the brace must be alone on the line. For
example:
try {
...
}
finally {
SAME
public static final RightCurlyOption SAME
Represents the policy that the brace must be on the same line as the
next statement. For example:
try {
...
} finally {