Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
com.puppycrawl.tools.checkstyle.checks.AbstractOption
com.puppycrawl.tools.checkstyle.checks.blocks.RightCurlyOption
public final class RightCurlyOption
extends AbstractOption
'}'
.
Field Summary | |
static RightCurlyOption |
|
static RightCurlyOption |
|
Method Summary | |
protected Map |
Methods inherited from class com.puppycrawl.tools.checkstyle.checks.AbstractOption | |
decode , getStrToOpt , readResolve , toString |
public static final RightCurlyOption ALONE
Represents the policy that the brace must be alone on the line. For example:try { ... } finally {
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 {
Back to the Checkstyle Home Page |