public static enum FormatPreferences.Space extends Enum<FormatPreferences.Space>
Modifier and Type | Method and Description |
---|---|
static FormatPreferences.Space |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormatPreferences.Space[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final FormatPreferences.Space BEFORE_PAREN
public static final FormatPreferences.Space BEFORE_STATEMENT
public static final FormatPreferences.Space BEFORE_PAREN_METHOD_CALL
public static final FormatPreferences.Space BEFORE_PAREN_METHOD_DECLARATION
public static final FormatPreferences.Space BEFORE_PAREN_IF
public static final FormatPreferences.Space BEFORE_PAREN_FOR
public static final FormatPreferences.Space BEFORE_PAREN_WHILE
public static final FormatPreferences.Space BEFORE_PAREN_SWITCH
public static final FormatPreferences.Space BEFORE_PAREN_TRY
public static final FormatPreferences.Space BEFORE_PAREN_CATCH
public static final FormatPreferences.Space BEFORE_PAREN_SYNCHRONIZED
public static final FormatPreferences.Space BEFORE_PAREN_ANNOTATION_PARAM
public static final FormatPreferences.Space BEFORE_PAREN_CAST
@Deprecated public static final FormatPreferences.Space AROUND_OPERATORS
public static final FormatPreferences.Space AROUND_ASSIGN
public static final FormatPreferences.Space AROUND_LOGICAL
public static final FormatPreferences.Space AROUND_EQUALITY
public static final FormatPreferences.Space AROUND_RANGE
public static final FormatPreferences.Space AROUND_BITWISE
public static final FormatPreferences.Space AROUND_ADDITIVE
public static final FormatPreferences.Space AROUND_MULTIPLICATIVE
public static final FormatPreferences.Space AROUND_SHIFT
public static final FormatPreferences.Space AROUND_ARROW
public static final FormatPreferences.Space AROUND_METHOD_REF
public static final FormatPreferences.Space AT_UNARY
public static final FormatPreferences.Space BEFORE_BRACE
public static final FormatPreferences.Space BEFORE_BRACE_CLASS
public static final FormatPreferences.Space BEFORE_BRACE_METHOD
public static final FormatPreferences.Space BEFORE_BRACE_IF
public static final FormatPreferences.Space BEFORE_BRACE_ELSE
public static final FormatPreferences.Space BEFORE_BRACE_FOR
public static final FormatPreferences.Space BEFORE_BRACE_WHILE
public static final FormatPreferences.Space BEFORE_BRACE_DO
public static final FormatPreferences.Space BEFORE_BRACE_SWITCH
public static final FormatPreferences.Space BEFORE_BRACE_TRY
public static final FormatPreferences.Space BEFORE_BRACE_CATCH
public static final FormatPreferences.Space BEFORE_BRACE_FINALLY
public static final FormatPreferences.Space BEFORE_BRACE_SYNCHRONIZE
public static final FormatPreferences.Space BEFORE_BRACE_ARRAY_INIT
public static final FormatPreferences.Space BEFORE_BRACE_ANNOTATION_ARRAY_INIT
public static final FormatPreferences.Space BEFORE_KEYWORD_ELSE
public static final FormatPreferences.Space BEFORE_KEYWORD_WHILE
public static final FormatPreferences.Space BEFORE_KEYWORD_CATCH
public static final FormatPreferences.Space BEFORE_KEYWORD_FINALLY
public static final FormatPreferences.Space WITHIN_BRACES_CODE
public static final FormatPreferences.Space WITHIN_BRACES_EMPTY
public static final FormatPreferences.Space WITHIN_BRACES_ARRAY_INIT
public static final FormatPreferences.Space WITHIN_BRACKETS
public static final FormatPreferences.Space WITHIN_PAREN_EXPR
public static final FormatPreferences.Space WITHIN_PAREN_METHOD_CALL
public static final FormatPreferences.Space WITHIN_PAREN_METHOD_CALL_EMPTY
public static final FormatPreferences.Space WITHIN_PAREN_METHOD_DECLARATION
public static final FormatPreferences.Space WITHIN_PAREN_METHOD_DECLARATION_EMPTY
public static final FormatPreferences.Space WITHIN_PAREN_IF
public static final FormatPreferences.Space WITHIN_PAREN_FOR
public static final FormatPreferences.Space WITHIN_PAREN_WHILE
public static final FormatPreferences.Space WITHIN_PAREN_SWITCH
public static final FormatPreferences.Space WITHIN_PAREN_TRY
public static final FormatPreferences.Space WITHIN_PAREN_CATCH
public static final FormatPreferences.Space WITHIN_PAREN_SYNCHRONIZED
public static final FormatPreferences.Space WITHIN_PAREN_CAST
public static final FormatPreferences.Space WITHIN_PAREN_ANNOTATION
public static final FormatPreferences.Space BEFORE_TERNARY_Q
public static final FormatPreferences.Space AFTER_TERNARY_Q
public static final FormatPreferences.Space BEFORE_TERNARY_COLON
public static final FormatPreferences.Space AFTER_TERNARY_COLON
public static final FormatPreferences.Space AFTER_COMMA_TYPE_ARGUMENT
public static final FormatPreferences.Space BEFORE_COMMA
public static final FormatPreferences.Space AFTER_COMMA
public static final FormatPreferences.Space BEFORE_COLON
public static final FormatPreferences.Space AFTER_COLON
public static final FormatPreferences.Space AFTER_COMMA_ENUM_CONSTANT
public static final FormatPreferences.Space BEFORE_SEMICOLON
public static final FormatPreferences.Space AFTER_SEMICOLON
public static final FormatPreferences.Space AFTER_CAST
public static final FormatPreferences.Space AFTER_LABEL
public static final FormatPreferences.Space AFTER_ANNOTATION
public static final FormatPreferences.Space AFTER_PARAM_ANNOTATION
public static FormatPreferences.Space[] values()
for (FormatPreferences.Space c : FormatPreferences.Space.values()) System.out.println(c);
public static FormatPreferences.Space 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 © 2016. All rights reserved.