Copyright (c) 2000, 2019 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation Brock Janiczak - Contribution for bug 150741 Ray V. (voidstar@gmail.com) - Contribution for bug 282988 Jesper S Moller - Contribution for bug 402173 Mateusz Matela - [formatter] Formatter does not format Java code correctly, especially when max line width is set - https://bugs.eclipse.org/303519
/******************************************************************************* * Copyright (c) 2000, 2019 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation * Brock Janiczak - Contribution for bug 150741 * Ray V. (voidstar@gmail.com) - Contribution for bug 282988 * Jesper S Moller - Contribution for bug 402173 * Mateusz Matela <mateusz.matela@gmail.com> - [formatter] Formatter does not format Java code correctly, especially when max line width is set - https://bugs.eclipse.org/303519 *******************************************************************************/
package org.eclipse.jdt.core.formatter; import java.util.Map; import org.eclipse.jdt.core.JavaCore; import org.eclipse.jdt.core.ToolFactory; import org.eclipse.jdt.internal.formatter.DefaultCodeFormatterOptions; import org.eclipse.jdt.internal.formatter.DefaultCodeFormatterOptions.Alignment;
Constants used to set up the options of the code formatter.
Since:3.0
@noinstantiateThis class is not intended to be instantiated by clients.
@noextendThis class is not intended to be subclassed by clients.
/** * Constants used to set up the options of the code formatter. * * @since 3.0 * @noinstantiate This class is not intended to be instantiated by clients. * @noextend This class is not intended to be subclassed by clients. */
@SuppressWarnings("rawtypes") public class DefaultCodeFormatterConstants {
FORMATTER / Value to set a brace location at the end of a line.
See Also:
Since:3.0
/** * <pre> * FORMATTER / Value to set a brace location at the end of a line. * </pre> * @see #FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_ARRAY_INITIALIZER * @see #FORMATTER_BRACE_POSITION_FOR_BLOCK * @see #FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_SWITCH * @see #FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_LAMBDA_BODY * @since 3.0 */
public static final String END_OF_LINE = "end_of_line"; //$NON-NLS-1$
FORMATTER / Value to set an option to false.
Since:3.0
/** * <pre> * FORMATTER / Value to set an option to false. * </pre> * @since 3.0 */
public static final String FALSE = "false"; //$NON-NLS-1$
FORMATTER / Option to align type members of a type declaration on column
    - option id:         "org.eclipse.jdt.core.formatter.align_type_members_on_columns"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to align type members of a type declaration on column * - option id: "org.eclipse.jdt.core.formatter.align_type_members_on_columns" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_ALIGN_TYPE_MEMBERS_ON_COLUMNS = JavaCore.PLUGIN_ID + ".formatter.align_type_members_on_columns"; //$NON-NLS-1$
FORMATTER / Option to align variable declarations on column
    - option id:         "org.eclipse.jdt.core.formatter.align_variable_declarations_on_columns"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.15
/** * <pre> * FORMATTER / Option to align variable declarations on column * - option id: "org.eclipse.jdt.core.formatter.align_variable_declarations_on_columns" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.15 */
public static final String FORMATTER_ALIGN_VARIABLE_DECLARATIONS_ON_COLUMNS = JavaCore.PLUGIN_ID + ".formatter.align_variable_declarations_on_columns"; //$NON-NLS-1$
FORMATTER / Option to align assignment statements on column
    - option id:         "org.eclipse.jdt.core.formatter.align_assignment_statements_on_columns"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.15
/** * <pre> * FORMATTER / Option to align assignment statements on column * - option id: "org.eclipse.jdt.core.formatter.align_assignment_statements_on_columns" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.15 */
public static final String FORMATTER_ALIGN_ASSIGNMENT_STATEMENTS_ON_COLUMNS = JavaCore.PLUGIN_ID + ".formatter.align_assignment_statements_on_columns"; //$NON-NLS-1$
FORMATTER / Option to use spaces when aligning members, independent of selected tabulation character
    - option id:         "org.eclipse.jdt.core.formatter.align_with_spaces"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.15
/** * <pre> * FORMATTER / Option to use spaces when aligning members, independent of selected tabulation character * - option id: "org.eclipse.jdt.core.formatter.align_with_spaces" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.15 */
public static final String FORMATTER_ALIGN_WITH_SPACES = JavaCore.PLUGIN_ID + ".formatter.align_with_spaces"; //$NON-NLS-1$
FORMATTER / Option to affect aligning on columns: groups of items are aligned independently if they are separated by at least the selected number of blank lines. Note: since 3.15 the 'fields' part is a (potentially misleading) residue as this option affects other types of aligning on columns as well. - option id: "org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines" - possible values: "<n>", where n is a positive integer - default: Integer.MAX_VALUE 
Since:3.12
/** * <pre> * FORMATTER / Option to affect aligning on columns: groups of items are aligned independently * if they are separated by at least the selected number of blank lines. * Note: since 3.15 the 'fields' part is a (potentially misleading) residue as this option * affects other types of aligning on columns as well. * - option id: "org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines" * - possible values: "&lt;n&gt;", where n is a positive integer * - default: {@code Integer.MAX_VALUE} * </pre> * @since 3.12 */
public static final String FORMATTER_ALIGN_FIELDS_GROUPING_BLANK_LINES = JavaCore.PLUGIN_ID + ".formatter.align_fields_grouping_blank_lines"; //$NON-NLS-1$
FORMATTER / Option for alignment of arguments in allocation expression
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of arguments in allocation expression * - option id: "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ALLOCATION_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_arguments_in_allocation_expression"; //$NON-NLS-1$
FORMATTER / Option for alignment of arguments in enum constant
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.1
/** * <pre> * FORMATTER / Option for alignment of arguments in enum constant * - option id: "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.1 */
public static final String FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.alignment_for_arguments_in_enum_constant"; //$NON-NLS-1$
FORMATTER / Option for alignment of arguments in annotation
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.6
/** * <pre> * FORMATTER / Option for alignment of arguments in annotation * - option id: "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.6 */
public static final String FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_arguments_in_annotation"; //$NON-NLS-1$
FORMATTER / Option for alignment of arguments in explicit constructor call
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of arguments in explicit constructor call * - option id: "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_EXPLICIT_CONSTRUCTOR_CALL = JavaCore.PLUGIN_ID + ".formatter.alignment_for_arguments_in_explicit_constructor_call"; //$NON-NLS-1$
FORMATTER / Option for alignment of arguments in method invocation
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of arguments in method invocation * - option id: "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_METHOD_INVOCATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_arguments_in_method_invocation"; //$NON-NLS-1$
FORMATTER / Option for alignment of arguments in qualified allocation expression
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of arguments in qualified allocation expression * - option id: "org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_QUALIFIED_ALLOCATION_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_arguments_in_qualified_allocation_expression"; //$NON-NLS-1$
FORMATTER / Option for alignment of assignment (=, +=, -=, *=, /=, %=, &=, ^=, |=, <<=, >>=, >>>=)
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_assignment"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.2
/** * <pre> * FORMATTER / Option for alignment of assignment (=, +=, -=, *=, /=, %=, &=, ^=, |=, <<=, >>=, >>>=) * - option id: "org.eclipse.jdt.core.formatter.alignment_for_assignment" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.2 */
public static final String FORMATTER_ALIGNMENT_FOR_ASSIGNMENT = JavaCore.PLUGIN_ID + ".formatter.alignment_for_assignment"; //$NON-NLS-1$
FORMATTER / Option for alignment of expressions with multiplicative operators (*, /, %)
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_multiplicative_operator"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.17
/** * <pre> * FORMATTER / Option for alignment of expressions with multiplicative operators (*, /, %) * - option id: "org.eclipse.jdt.core.formatter.alignment_for_multiplicative_operator" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.17 */
public static final String FORMATTER_ALIGNMENT_FOR_MULTIPLICATIVE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.alignment_for_multiplicative_operator"; //$NON-NLS-1$
FORMATTER / Option for alignment of expressions with additive operators (+, -)
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_additive_operator"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.17
/** * <pre> * FORMATTER / Option for alignment of expressions with additive operators (+, -) * - option id: "org.eclipse.jdt.core.formatter.alignment_for_additive_operator" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.17 */
public static final String FORMATTER_ALIGNMENT_FOR_ADDITIVE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.alignment_for_additive_operator"; //$NON-NLS-1$
FORMATTER / Option for alignment of string concatenation expressions
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_string_concatenation"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.17
/** * <pre> * FORMATTER / Option for alignment of string concatenation expressions * - option id: "org.eclipse.jdt.core.formatter.alignment_for_string_concatenation" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.17 */
public static final String FORMATTER_ALIGNMENT_FOR_STRING_CONCATENATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_string_concatenation"; //$NON-NLS-1$
FORMATTER / Option for alignment of expressions with shift operators (<<, >>, >>>)
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_shift_operator"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.17
/** * <pre> * FORMATTER / Option for alignment of expressions with shift operators (<<, >>, >>>) * - option id: "org.eclipse.jdt.core.formatter.alignment_for_shift_operator" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.17 */
public static final String FORMATTER_ALIGNMENT_FOR_SHIFT_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.alignment_for_shift_operator"; //$NON-NLS-1$
FORMATTER / Option for alignment of expressions with relational operators (<, >, <=, >=, ==, !=)
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_relational_operator"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.17
/** * <pre> * FORMATTER / Option for alignment of expressions with relational operators (<, >, <=, >=, ==, !=) * - option id: "org.eclipse.jdt.core.formatter.alignment_for_relational_operator" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.17 */
public static final String FORMATTER_ALIGNMENT_FOR_RELATIONAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.alignment_for_relational_operator"; //$NON-NLS-1$
FORMATTER / Option for alignment of expressions with bitwise operators (&, ^, |)
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_bitwise_operator"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.17
/** * <pre> * FORMATTER / Option for alignment of expressions with bitwise operators (&, ^, |) * - option id: "org.eclipse.jdt.core.formatter.alignment_for_bitwise_operator" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.17 */
public static final String FORMATTER_ALIGNMENT_FOR_BITWISE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.alignment_for_bitwise_operator"; //$NON-NLS-1$
FORMATTER / Option for alignment of expressions with logical operators (&&, ||)
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_logical_operator"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.17
/** * <pre> * FORMATTER / Option for alignment of expressions with logical operators (&&, ||) * - option id: "org.eclipse.jdt.core.formatter.alignment_for_logical_operator" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.17 */
public static final String FORMATTER_ALIGNMENT_FOR_LOGICAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.alignment_for_logical_operator"; //$NON-NLS-1$
FORMATTER / Option for alignment of binary expression
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_binary_expression"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
Deprecated:Use new settings instead: FORMATTER_ALIGNMENT_FOR_MULTIPLICATIVE_OPERATOR, FORMATTER_ALIGNMENT_FOR_ADDITIVE_OPERATOR, FORMATTER_ALIGNMENT_FOR_STRING_CONCATENATION, FORMATTER_ALIGNMENT_FOR_BITWISE_OPERATOR, FORMATTER_ALIGNMENT_FOR_LOGICAL_OPERATOR
/** * <pre> * FORMATTER / Option for alignment of binary expression * - option id: "org.eclipse.jdt.core.formatter.alignment_for_binary_expression" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * * @see #createAlignmentValue(boolean, int, int) * @since 3.0 * @deprecated Use new settings instead: {@link #FORMATTER_ALIGNMENT_FOR_MULTIPLICATIVE_OPERATOR}, * {@link #FORMATTER_ALIGNMENT_FOR_ADDITIVE_OPERATOR}, {@link #FORMATTER_ALIGNMENT_FOR_STRING_CONCATENATION}, * {@link #FORMATTER_ALIGNMENT_FOR_BITWISE_OPERATOR}, {@link #FORMATTER_ALIGNMENT_FOR_LOGICAL_OPERATOR} */
public static final String FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_binary_expression"; //$NON-NLS-1$
FORMATTER / Option for alignment of compact if
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_compact_if"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_ONE_PER_LINE, INDENT_BY_ONE)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of compact if * - option id: "org.eclipse.jdt.core.formatter.alignment_for_compact_if" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_ONE_PER_LINE, INDENT_BY_ONE) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_COMPACT_IF = JavaCore.PLUGIN_ID + ".formatter.alignment_for_compact_if"; //$NON-NLS-1$
FORMATTER / Option for alignment of compact loops
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_compact_loops"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_ONE_PER_LINE, INDENT_BY_ONE)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.15
/** * <pre> * FORMATTER / Option for alignment of compact loops * - option id: "org.eclipse.jdt.core.formatter.alignment_for_compact_loops" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_ONE_PER_LINE, INDENT_BY_ONE) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.15 */
public static final String FORMATTER_ALIGNMENT_FOR_COMPACT_LOOP = JavaCore.PLUGIN_ID + ".formatter.alignment_for_compact_loops"; //$NON-NLS-1$
FORMATTER / Option for alignment of conditional expression
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_conditional_expression"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_ONE_PER_LINE, INDENT_DEFAULT)
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of conditional expression * - option id: "org.eclipse.jdt.core.formatter.alignment_for_conditional_expression" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_ONE_PER_LINE, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @see #FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION_CHAIN * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_conditional_expression"; //$NON-NLS-1$
FORMATTER / Option for alignment of conditional expression chains. If disabled, chains are not recognized and only FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION policy is used instead. - option id: "org.eclipse.jdt.core.formatter.alignment_for_conditional_expression_chain" - possible values: values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
Since:3.18
/** * <pre> * FORMATTER / Option for alignment of conditional expression chains. If disabled, chains are not recognized * and only {@link #FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION} policy is used instead. * - option id: "org.eclipse.jdt.core.formatter.alignment_for_conditional_expression_chain" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @see #FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION * @since 3.18 */
public static final String FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION_CHAIN = JavaCore.PLUGIN_ID + ".formatter.alignment_for_conditional_expression_chain"; //$NON-NLS-1$
FORMATTER / Option for alignment of enum constants
    - option id:        "org.eclipse.jdt.core.formatter.alignment_for_enum_constants"
    - possible values:  values returned by createAlignmentValue(boolean, int, int) call
    - default:          createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.1
/** * <pre> * FORMATTER / Option for alignment of enum constants * - option id: "org.eclipse.jdt.core.formatter.alignment_for_enum_constants" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.1 */
public static final String FORMATTER_ALIGNMENT_FOR_ENUM_CONSTANTS = JavaCore.PLUGIN_ID + ".formatter.alignment_for_enum_constants"; //$NON-NLS-1$
FORMATTER / Option for alignment of expressions in array initializer
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of expressions in array initializer * - option id: "org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.alignment_for_expressions_in_array_initializer"; //$NON-NLS-1$
FORMATTER / Option for alignment of initialization, termination, and increment expressions in 'for'
            loop header
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_for_loop_header"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.12
/** * <pre> * FORMATTER / Option for alignment of initialization, termination, and increment expressions in 'for' * loop header * - option id: "org.eclipse.jdt.core.formatter.alignment_for_for_loop_header" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.12 */
public static final String FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_FOR_LOOP_HEADER = JavaCore.PLUGIN_ID + ".formatter.alignment_for_expressions_in_for_loop_header"; //$NON-NLS-1$
FORMATTER / Option for alignment of method declaration
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_method_declaration"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.6
/** * <pre> * FORMATTER / Option for alignment of method declaration * - option id: "org.eclipse.jdt.core.formatter.alignment_for_method_declaration" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.6 */
public static final String FORMATTER_ALIGNMENT_FOR_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_method_declaration"; //$NON-NLS-1$
FORMATTER / Option for alignment of module statements
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_module_statements"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.14
/** * <pre> * FORMATTER / Option for alignment of module statements * - option id: "org.eclipse.jdt.core.formatter.alignment_for_module_statements" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.14 */
public static final String FORMATTER_ALIGNMENT_FOR_MODULE_STATEMENTS = JavaCore.PLUGIN_ID + ".formatter.alignment_for_module_statements"; //$NON-NLS-1$
FORMATTER / Option for alignment of multiple fields
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_multiple_fields"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of multiple fields * - option id: "org.eclipse.jdt.core.formatter.alignment_for_multiple_fields" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS = JavaCore.PLUGIN_ID + ".formatter.alignment_for_multiple_fields";//$NON-NLS-1$
FORMATTER / Option for alignment of type arguments in parameterized type references
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_parameterized_type_references"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.12
/** * <pre> * FORMATTER / Option for alignment of type arguments in parameterized type references * - option id: "org.eclipse.jdt.core.formatter.alignment_for_parameterized_type_references" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.12 */
public static final String FORMATTER_ALIGNMENT_FOR_PARAMETERIZED_TYPE_REFERENCES = JavaCore.PLUGIN_ID + ".formatter.alignment_for_parameterized_type_references"; //$NON-NLS-1$
FORMATTER / Option for alignment of parameters in constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of parameters in constructor declaration * - option id: "org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_CONSTRUCTOR_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_parameters_in_constructor_declaration"; //$NON-NLS-1$
FORMATTER / Option for alignment of parameters in method declaration
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of parameters in method declaration * - option id: "org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_parameters_in_method_declaration"; //$NON-NLS-1$
FORMATTER / Option for alignment of resources in a try with resources statement
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_resources_in_try"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NEXT_PER_LINE, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.7.1
/** * <pre> * FORMATTER / Option for alignment of resources in a try with resources statement * - option id: "org.eclipse.jdt.core.formatter.alignment_for_resources_in_try" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NEXT_PER_LINE, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.7.1 */
public static final String FORMATTER_ALIGNMENT_FOR_RESOURCES_IN_TRY = JavaCore.PLUGIN_ID + ".formatter.alignment_for_resources_in_try"; //$NON-NLS-1$
FORMATTER / Option for alignment of selector in method invocation
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of selector in method invocation * - option id: "org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_SELECTOR_IN_METHOD_INVOCATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_selector_in_method_invocation"; //$NON-NLS-1$
FORMATTER / Option for alignment of superclass in type declaration
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NEXT_SHIFTED, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of superclass in type declaration * - option id: "org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NEXT_SHIFTED, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_SUPERCLASS_IN_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_superclass_in_type_declaration"; //$NON-NLS-1$
FORMATTER / Option for alignment of superinterfaces in enum declaration
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.1
/** * <pre> * FORMATTER / Option for alignment of superinterfaces in enum declaration * - option id: "org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.1 */
public static final String FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_superinterfaces_in_enum_declaration"; //$NON-NLS-1$
FORMATTER / Option for alignment of superinterfaces in type declaration
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of superinterfaces in type declaration * - option id: "org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_superinterfaces_in_type_declaration"; //$NON-NLS-1$
FORMATTER / Option for alignment of throws clause in constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of throws clause in constructor declaration * - option id: "org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_CONSTRUCTOR_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_throws_clause_in_constructor_declaration"; //$NON-NLS-1$
FORMATTER / Option for alignment of throws clause in method declaration
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.0
/** * <pre> * FORMATTER / Option for alignment of throws clause in method declaration * - option id: "org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.0 */
public static final String FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.alignment_for_throws_clause_in_method_declaration"; //$NON-NLS-1$
FORMATTER / Option for alignment of type arguments in method invocations and references
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_type_arguments"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.12
/** * <pre> * FORMATTER / Option for alignment of type arguments in method invocations and references * - option id: "org.eclipse.jdt.core.formatter.alignment_for_type_arguments" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.12 */
public static final String FORMATTER_ALIGNMENT_FOR_TYPE_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.alignment_for_type_arguments"; //$NON-NLS-1$
FORMATTER / Option for alignment of type parameters in method and type declarations
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_type_parameters"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.12
/** * <pre> * FORMATTER / Option for alignment of type parameters in method and type declarations * - option id: "org.eclipse.jdt.core.formatter.alignment_for_type_parameters" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_NO_SPLIT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.12 */
public static final String FORMATTER_ALIGNMENT_FOR_TYPE_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.alignment_for_type_parameters"; //$NON-NLS-1$
FORMATTER / Option for alignment of exceptions declared in a Union Type in the argument of a multicatch statement
    - option id:         "org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch"
    - possible values:   values returned by createAlignmentValue(boolean, int, int) call
    - default:           createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT)
See Also:
  • createAlignmentValue(boolean, int, int)
Since:3.7.1
/** * <pre> * FORMATTER / Option for alignment of exceptions declared in a Union Type in the argument of a multicatch statement * - option id: "org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch" * - possible values: values returned by <code>createAlignmentValue(boolean, int, int)</code> call * - default: createAlignmentValue(false, WRAP_COMPACT, INDENT_DEFAULT) * </pre> * @see #createAlignmentValue(boolean, int, int) * @since 3.7.1 */
public static final String FORMATTER_ALIGNMENT_FOR_UNION_TYPE_IN_MULTICATCH = JavaCore.PLUGIN_ID + ".formatter.alignment_for_union_type_in_multicatch"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines after the imports declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_after_imports" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines after the imports declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_after_imports" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_AFTER_IMPORTS = JavaCore.PLUGIN_ID + ".formatter.blank_lines_after_imports"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines after the package declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_after_package" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines after the package declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_after_package" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_AFTER_PACKAGE = JavaCore.PLUGIN_ID + ".formatter.blank_lines_after_package"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines at the beginning of the method body - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines at the beginning of the method body * - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_AT_BEGINNING_OF_METHOD_BODY = JavaCore.PLUGIN_ID + ".formatter.number_of_blank_lines_at_beginning_of_method_body"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines at the end of the method body - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_at_end_of_method_body" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.19
/** * <pre> * FORMATTER / Option to add or remove blank lines at the end of the method body * - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_at_end_of_method_body" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.19 */
public static final String FORMATTER_BLANK_LINES_AT_END_OF_METHOD_BODY = JavaCore.PLUGIN_ID + ".formatter.number_of_blank_lines_at_end_of_method_body"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines at the beginning of the code block - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_code_block" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.19
/** * <pre> * FORMATTER / Option to add or remove blank lines at the beginning of the code block * - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_code_block" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.19 */
public static final String FORMATTER_BLANK_LINES_AT_BEGINNING_OF_CODE_BLOCK = JavaCore.PLUGIN_ID + ".formatter.number_of_blank_lines_at_beginning_of_code_block"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines at the end of the code block - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_at_end_of_code_block" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.19
/** * <pre> * FORMATTER / Option to add or remove blank lines at the end of the code block * - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_at_end_of_code_block" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.19 */
public static final String FORMATTER_BLANK_LINES_AT_END_OF_CODE_BLOCK = JavaCore.PLUGIN_ID + ".formatter.number_of_blank_lines_at_end_of_code_block"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before a statement containing a code block - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_before_code_block" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.19
/** * <pre> * FORMATTER / Option to add or remove blank lines before a statement containing a code block * - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_before_code_block" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.19 */
public static final String FORMATTER_BLANK_LINES_BEFORE_CODE_BLOCK = JavaCore.PLUGIN_ID + ".formatter.number_of_blank_lines_before_code_block"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines after a statement containing a code block - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_after_code_block" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.19
/** * <pre> * FORMATTER / Option to add or remove blank lines after a statement containing a code block * - option id: "org.eclipse.jdt.core.formatter.number_of_blank_lines_after_code_block" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.19 */
public static final String FORMATTER_BLANK_LINES_AFTER_CODE_BLOCK = JavaCore.PLUGIN_ID + ".formatter.number_of_blank_lines_after_code_block"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before a field declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_field" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines before a field declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_field" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_BEFORE_FIELD = JavaCore.PLUGIN_ID + ".formatter.blank_lines_before_field"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before the first class body declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines before the first class body declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_BEFORE_FIRST_CLASS_BODY_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.blank_lines_before_first_class_body_declaration"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines after the last class body declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_after_last_class_body_declaration" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.19
/** * <pre> * FORMATTER / Option to add or remove blank lines after the last class body declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_after_last_class_body_declaration" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.19 */
public static final String FORMATTER_BLANK_LINES_AFTER_LAST_CLASS_BODY_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.blank_lines_after_last_class_body_declaration"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before the imports declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_imports" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines before the imports declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_imports" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_BEFORE_IMPORTS = JavaCore.PLUGIN_ID + ".formatter.blank_lines_before_imports"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before an abstract method declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_abstract_method" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.19
/** * <pre> * FORMATTER / Option to add or remove blank lines before an abstract method declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_abstract_method" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.19 */
public static final String FORMATTER_BLANK_LINES_BEFORE_ABSTRACT_METHOD = JavaCore.PLUGIN_ID + ".formatter.blank_lines_before_abstract_method"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before a member type declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_member_type" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines before a member type declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_member_type" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_BEFORE_MEMBER_TYPE = JavaCore.PLUGIN_ID + ".formatter.blank_lines_before_member_type"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before a non-abstract method declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_method" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines before a non-abstract method declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_method" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_BEFORE_METHOD = JavaCore.PLUGIN_ID + ".formatter.blank_lines_before_method"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before a new chunk - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines before a new chunk * - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_BEFORE_NEW_CHUNK = JavaCore.PLUGIN_ID + ".formatter.blank_lines_before_new_chunk"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines before the package declaration - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_package" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines before the package declaration * - option id: "org.eclipse.jdt.core.formatter.blank_lines_before_package" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_BEFORE_PACKAGE = JavaCore.PLUGIN_ID + ".formatter.blank_lines_before_package"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines between import groups - option id: "org.eclipse.jdt.core.formatter.blank_lines_between_import_groups" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "1" 
Note: Import groups are defined once "Organize Import" operation has been executed. The code formatter itself doesn't define the import groups.
Since:3.3
/** * <pre> * FORMATTER / Option to add or remove blank lines between import groups * - option id: "org.eclipse.jdt.core.formatter.blank_lines_between_import_groups" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "1" * </pre> * Note: Import groups are defined once "Organize Import" operation has been executed. The code formatter itself * doesn't define the import groups. * * @since 3.3 */
public static final String FORMATTER_BLANK_LINES_BETWEEN_IMPORT_GROUPS = JavaCore.PLUGIN_ID + ".formatter.blank_lines_between_import_groups"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines between type declarations - option id: "org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.0
/** * <pre> * FORMATTER / Option to add or remove blank lines between type declarations * - option id: "org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_BLANK_LINES_BETWEEN_TYPE_DECLARATIONS = JavaCore.PLUGIN_ID + ".formatter.blank_lines_between_type_declarations"; //$NON-NLS-1$
FORMATTER / Option to add or remove blank lines between statement groups in switch - option id: "org.eclipse.jdt.core.formatter.blank_lines_between_statement_groups_in_switch" - possible values: "<n>", where n is an integer. If n is negative, the actual number of blank lines is ~n and any excess blank lines are deleted, overriding the FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE option - default: "0" 
Since:3.19
/** * <pre> * FORMATTER / Option to add or remove blank lines between statement groups in switch * - option id: "org.eclipse.jdt.core.formatter.blank_lines_between_statement_groups_in_switch" * - possible values: "&lt;n&gt;", where n is an integer. If n is negative, the actual number of * blank lines is ~n and any excess blank lines are deleted, overriding the * {@link #FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE} option * - default: "0" * </pre> * @since 3.19 */
public static final String FORMATTER_BLANK_LINES_BETWEEN_STATEMENT_GROUPS_IN_SWITCH = JavaCore.PLUGIN_ID + ".formatter.blank_lines_between_statement_group_in_switch"; //$NON-NLS-1$
FORMATTER / Option to position the braces of an annotation type declaration
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to position the braces of an annotation type declaration * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.1 */
public static final String FORMATTER_BRACE_POSITION_FOR_ANNOTATION_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_annotation_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to position the braces of an anonymous type declaration
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to position the braces of an anonymous type declaration * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.0 */
public static final String FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_anonymous_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to position the braces of an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_array_initializer"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to position the braces of an array initializer * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_array_initializer" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.0 */
public static final String FORMATTER_BRACE_POSITION_FOR_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_array_initializer"; //$NON-NLS-1$
FORMATTER / Option to position the braces of a block
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_block"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to position the braces of a block * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_block" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.0 */
public static final String FORMATTER_BRACE_POSITION_FOR_BLOCK = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_block"; //$NON-NLS-1$
FORMATTER / Option to position the braces of a block in a case statement when the block is the first statement following
            the case
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_block_in_case"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to position the braces of a block in a case statement when the block is the first statement following * the case * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_block_in_case" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.0 */
public static final String FORMATTER_BRACE_POSITION_FOR_BLOCK_IN_CASE = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_block_in_case"; //$NON-NLS-1$
FORMATTER / Option to position the braces of a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to position the braces of a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.0 */
public static final String FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_constructor_declaration"; //$NON-NLS-1$
FORMATTER / Option to position the braces of an enum constant
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_enum_constant"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to position the braces of an enum constant * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_enum_constant" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.1 */
public static final String FORMATTER_BRACE_POSITION_FOR_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_enum_constant"; //$NON-NLS-1$
FORMATTER / Option to position the braces of an enum declaration
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to position the braces of an enum declaration * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.1 */
public static final String FORMATTER_BRACE_POSITION_FOR_ENUM_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_enum_declaration"; //$NON-NLS-1$
FORMATTER / Option to position the braces of a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_method_declaration"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to position the braces of a method declaration * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_method_declaration" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.0 */
public static final String FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_method_declaration"; //$NON-NLS-1$
FORMATTER / Option to position the braces of a switch statement
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_switch"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to position the braces of a switch statement * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_switch" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.0 */
public static final String FORMATTER_BRACE_POSITION_FOR_SWITCH = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_switch"; //$NON-NLS-1$
FORMATTER / Option to position the braces of a type declaration
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_type_declaration"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to position the braces of a type declaration * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_type_declaration" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.0 */
public static final String FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to position the braces of a lambda block
    - option id:         "org.eclipse.jdt.core.formatter.brace_position_for_lambda_body"
    - possible values:   { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP }
    - default:           END_OF_LINE
See Also:
Since:3.10
/** * <pre> * FORMATTER / Option to position the braces of a lambda block * - option id: "org.eclipse.jdt.core.formatter.brace_position_for_lambda_body" * - possible values: { END_OF_LINE, NEXT_LINE, NEXT_LINE_SHIFTED, NEXT_LINE_ON_WRAP } * - default: END_OF_LINE * </pre> * @see #END_OF_LINE * @see #NEXT_LINE * @see #NEXT_LINE_SHIFTED * @see #NEXT_LINE_ON_WRAP * @since 3.10 */
public static final String FORMATTER_BRACE_POSITION_FOR_LAMBDA_BODY = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_lambda_body"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in method declarations
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_method_declaration"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in method declarations * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_method_declaration" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_NOT_EMPTY * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_method_delcaration"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in method invocations
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_method_invocation"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in method invocations * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_method_invocation" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_NOT_EMPTY * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_INVOCATION = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_method_invocation"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in enum constant declarations
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_enum_constant_declaration"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in enum constant declarations * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_enum_constant_declaration" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_NOT_EMPTY * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_ENUM_CONSTANT_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_enum_constant_declaration"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in 'if' and 'while' statements
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_if_while_statement"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in 'if' and 'while' statements * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_if_while_statement" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_IF_WHILE_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_if_while_statement"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in 'for' statements
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statement"
    - possible values:   { COMMON_LINES,  SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in 'for' statements * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statement" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_FOR_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_for_statment"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in 'switch' statements
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_switch_statement"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in 'switch' statements * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_switch_statement" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_SWITCH_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_switch_statement"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in try clauses
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_try_clause"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in try clauses * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_try_clause" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_TRY_CLAUSE = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_try_clause"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in catch clauses
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_catch_clause"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in catch clauses * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_catch_clause" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_CATCH_CLAUSE = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_catch_clause"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in annotations
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_annotation"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in annotations * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_annotation" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_NOT_EMPTY * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_annotation"; //$NON-NLS-1$
FORMATTER / Option to position parentheses in lambda declarations
    - option id:         "org.eclipse.jdt.core.formatter.parentheses_positions_in_lambda_declaration"
    - possible values:   { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS }
    - default:           COMMON_LINES
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to position parentheses in lambda declarations * - option id: "org.eclipse.jdt.core.formatter.parentheses_positions_in_lambda_declaration" * - possible values: { COMMON_LINES, SEPARATE_LINES_IF_NOT_EMPTY, SEPARATE_LINES_IF_WRAPPED, SEPARATE_LINES, PRESERVE_POSITIONS } * - default: COMMON_LINES * </pre> * @see #COMMON_LINES * @see #SEPARATE_LINES_IF_NOT_EMPTY * @see #SEPARATE_LINES_IF_WRAPPED * @see #SEPARATE_LINES * @see #PRESERVE_POSITIONS * @since 3.12 */
public static final String FORMATTER_PARENTHESES_POSITIONS_IN_LAMBDA_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.parentheses_positions_in_lambda_declaration"; //$NON-NLS-1$
FORMATTER / Option to control whether blank lines are cleared inside comments
    - option id:         "org.eclipse.jdt.core.formatter.comment.clear_blank_lines"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.1
Deprecated:Use FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_BLOCK_COMMENT and FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_JAVADOC_COMMENT
/** * <pre> * FORMATTER / Option to control whether blank lines are cleared inside comments * - option id: "org.eclipse.jdt.core.formatter.comment.clear_blank_lines" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.1 * @deprecated Use {@link #FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_BLOCK_COMMENT} and {@link #FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_JAVADOC_COMMENT} */
@Deprecated public final static String FORMATTER_COMMENT_CLEAR_BLANK_LINES = "org.eclipse.jdt.core.formatter.comment.clear_blank_lines"; //$NON-NLS-1$
FORMATTER / Option to control whether blank lines are cleared inside javadoc comments
    - option id:         "org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.3
/** * <pre> * FORMATTER / Option to control whether blank lines are cleared inside javadoc comments * - option id: "org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.3 */
public final static String FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_JAVADOC_COMMENT = "org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment"; //$NON-NLS-1$
FORMATTER / Option to control whether blank lines are cleared inside block comments
    - option id:         "org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.3
/** * <pre> * FORMATTER / Option to control whether blank lines are cleared inside block comments * - option id: "org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.3 */
public final static String FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_BLOCK_COMMENT = "org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment"; //$NON-NLS-1$
FORMATTER / Option to control whether comments are formatted
    - option id:         "org.eclipse.jdt.core.formatter.comment.format_comments"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.1
Deprecated:Use multiple settings for each kind of comments. See FORMATTER_COMMENT_FORMAT_BLOCK_COMMENT, FORMATTER_COMMENT_FORMAT_JAVADOC_COMMENT and FORMATTER_COMMENT_FORMAT_LINE_COMMENT.
/** * <pre> * FORMATTER / Option to control whether comments are formatted * - option id: "org.eclipse.jdt.core.formatter.comment.format_comments" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.1 * @deprecated Use multiple settings for each kind of comments. See {@link #FORMATTER_COMMENT_FORMAT_BLOCK_COMMENT}, * {@link #FORMATTER_COMMENT_FORMAT_JAVADOC_COMMENT} and {@link #FORMATTER_COMMENT_FORMAT_LINE_COMMENT}. */
@Deprecated public final static String FORMATTER_COMMENT_FORMAT = "org.eclipse.jdt.core.formatter.comment.format_comments"; //$NON-NLS-1$
FORMATTER / Option to control whether single line comments are formatted
    - option id:         "org.eclipse.jdt.core.formatter.comment.format_line_comments"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.3
/** * <pre> * FORMATTER / Option to control whether single line comments are formatted * - option id: "org.eclipse.jdt.core.formatter.comment.format_line_comments" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.3 */
public final static String FORMATTER_COMMENT_FORMAT_LINE_COMMENT = "org.eclipse.jdt.core.formatter.comment.format_line_comments"; //$NON-NLS-1$
FORMATTER / Option to format line comments that start on the first column
    - option id:         "org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
Note that this option is ignored if either the FORMATTER_COMMENT_FORMAT_LINE_COMMENT option has been set to FALSE or the formatter is created with the mode ToolFactory.M_FORMAT_NEW.
See Also:
Since:3.6
/** * <pre> * FORMATTER / Option to format line comments that start on the first column * - option id: "org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * Note that this option is ignored if either the * {@link #FORMATTER_COMMENT_FORMAT_LINE_COMMENT} option has been set to * {@link #FALSE} or the formatter is created with the mode * {@link ToolFactory#M_FORMAT_NEW}. * * @see #TRUE * @see #FALSE * @see ToolFactory#createCodeFormatter(Map, int) * @since 3.6 */
public static final String FORMATTER_COMMENT_FORMAT_LINE_COMMENT_STARTING_ON_FIRST_COLUMN = JavaCore.PLUGIN_ID + ".formatter.format_line_comment_starting_on_first_column"; //$NON-NLS-1$
FORMATTER / Option to control whether the white space between code and line comments should be preserved or replaced with a single space
    - option id:         "org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.7
/** * <pre> * FORMATTER / Option to control whether the white space between code and line comments should be preserved or replaced with a single space * - option id: "org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.7 */
public final static String FORMATTER_COMMENT_PRESERVE_WHITE_SPACE_BETWEEN_CODE_AND_LINE_COMMENT = "org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments"; //$NON-NLS-1$
FORMATTER / Option to control whether multiple lines comments are formatted
    - option id:         "org.eclipse.jdt.core.formatter.comment.format_block_comments"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.3
/** * <pre> * FORMATTER / Option to control whether multiple lines comments are formatted * - option id: "org.eclipse.jdt.core.formatter.comment.format_block_comments" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.3 */
public final static String FORMATTER_COMMENT_FORMAT_BLOCK_COMMENT = "org.eclipse.jdt.core.formatter.comment.format_block_comments"; //$NON-NLS-1$
FORMATTER / Option to control whether javadoc comments are formatted
    - option id:         "org.eclipse.jdt.core.formatter.comment.format_javadoc_comments"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.3
/** * <pre> * FORMATTER / Option to control whether javadoc comments are formatted * - option id: "org.eclipse.jdt.core.formatter.comment.format_javadoc_comments" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.3 */
public final static String FORMATTER_COMMENT_FORMAT_JAVADOC_COMMENT = "org.eclipse.jdt.core.formatter.comment.format_javadoc_comments"; //$NON-NLS-1$
FORMATTER / Option to control whether the header comment of a Java source file is formatted
    - option id:         "org.eclipse.jdt.core.formatter.comment.format_header"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to control whether the header comment of a Java source file is formatted * - option id: "org.eclipse.jdt.core.formatter.comment.format_header" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.1 */
public final static String FORMATTER_COMMENT_FORMAT_HEADER = "org.eclipse.jdt.core.formatter.comment.format_header"; //$NON-NLS-1$
FORMATTER / Option to control whether HTML tags are formatted.
    - option id:         "org.eclipse.jdt.core.formatter.comment.format_html"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to control whether HTML tags are formatted. * - option id: "org.eclipse.jdt.core.formatter.comment.format_html" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.1 */
public final static String FORMATTER_COMMENT_FORMAT_HTML = "org.eclipse.jdt.core.formatter.comment.format_html"; //$NON-NLS-1$
FORMATTER / Option to control whether code snippets are formatted in comments
    - option id:         "org.eclipse.jdt.core.formatter.comment.format_source_code"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to control whether code snippets are formatted in comments * - option id: "org.eclipse.jdt.core.formatter.comment.format_source_code" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.1 */
public final static String FORMATTER_COMMENT_FORMAT_SOURCE = "org.eclipse.jdt.core.formatter.comment.format_source_code"; //$NON-NLS-1$
FORMATTER / Option to control whether description of Javadoc parameters are indented
    - option id:         "org.eclipse.jdt.core.formatter.comment.indent_parameter_description"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to control whether description of Javadoc parameters are indented * - option id: "org.eclipse.jdt.core.formatter.comment.indent_parameter_description" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @see #FORMATTER_COMMENT_INDENT_TAG_DESCRIPTION * @since 3.1 */
public static final String FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION = "org.eclipse.jdt.core.formatter.comment.indent_parameter_description"; //$NON-NLS-1$
FORMATTER / Option to control whether Javadoc tag descriptions are indented when wrapped,
    excluding tags controlled by #FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION
    - option id:         "org.eclipse.jdt.core.formatter.comment.indent_return_description"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to control whether Javadoc tag descriptions are indented when wrapped, * excluding tags controlled by #FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION * - option id: "org.eclipse.jdt.core.formatter.comment.indent_return_description" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @see #FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION * @since 3.17 */
public static final String FORMATTER_COMMENT_INDENT_TAG_DESCRIPTION = "org.eclipse.jdt.core.formatter.comment.indent_tag_description"; //$NON-NLS-1$
FORMATTER / Option to control whether Javadoc root tags are indented.
    - option id:         "org.eclipse.jdt.core.formatter.comment.indent_root_tags"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
Note that at most one of these options can be set to TRUE:
  • FORMATTER_COMMENT_INDENT_ROOT_TAGS,
  • FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS,
  • FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED.
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to control whether Javadoc root tags are indented. * - option id: "org.eclipse.jdt.core.formatter.comment.indent_root_tags" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * * Note that at most one of these options can be set to {@code TRUE}: * <ul> * <li>{@code FORMATTER_COMMENT_INDENT_ROOT_TAGS}, * <li>{@code FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS}, * <li>{@code FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED}. * </ul> * * @see #TRUE * @see #FALSE * @see #FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS * @see #FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED * @since 3.1 */
public final static String FORMATTER_COMMENT_INDENT_ROOT_TAGS = "org.eclipse.jdt.core.formatter.comment.indent_root_tags"; //$NON-NLS-1$
FORMATTER / Option to control whether names and descriptions in Javadoc root tags should be aligned.
    - option id:         "org.eclipse.jdt.core.formatter.comment.align_tags_names_descriptions"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
Note that at most one of these options can be set to TRUE:
  • FORMATTER_COMMENT_INDENT_ROOT_TAGS,
  • FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS,
  • FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED.
See Also:
Since:3.14
/** * <pre> * FORMATTER / Option to control whether names and descriptions in Javadoc root tags should be aligned. * - option id: "org.eclipse.jdt.core.formatter.comment.align_tags_names_descriptions" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * * Note that at most one of these options can be set to {@code TRUE}: * <ul> * <li>{@code FORMATTER_COMMENT_INDENT_ROOT_TAGS}, * <li>{@code FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS}, * <li>{@code FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED}. * </ul> * * @see #TRUE * @see #FALSE * @see #FORMATTER_COMMENT_INDENT_ROOT_TAGS * @see #FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED * @since 3.14 */
public static final String FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS = "org.eclipse.jdt.core.formatter.comment.align_tags_names_descriptions"; //$NON-NLS-1$
FORMATTER / Option to control whether descriptions and names in Javadoc root tags, should be aligned and grouped by tag type.
    - option id:         "org.eclipse.jdt.core.formatter.comment.align_tags_descriptions_grouped"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
Note that at most one of these options can be set to TRUE:
  • FORMATTER_COMMENT_INDENT_ROOT_TAGS,
  • FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS,
  • FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED.
See Also:
Since:3.14
/** * <pre> * FORMATTER / Option to control whether descriptions and names in Javadoc root tags, should be aligned and grouped by tag type. * - option id: "org.eclipse.jdt.core.formatter.comment.align_tags_descriptions_grouped" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * * Note that at most one of these options can be set to {@code TRUE}: * <ul> * <li>{@code FORMATTER_COMMENT_INDENT_ROOT_TAGS}, * <li>{@code FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS}, * <li>{@code FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED}. * </ul> * * @see #TRUE * @see #FALSE * @see #FORMATTER_COMMENT_INDENT_ROOT_TAGS * @see #FORMATTER_COMMENT_ALIGN_TAGS_NAMES_DESCRIPTIONS * @since 3.14 */
public static final String FORMATTER_COMMENT_ALIGN_TAGS_DESCREIPTIONS_GROUPED = "org.eclipse.jdt.core.formatter.comment.align_tags_descriptions_grouped"; //$NON-NLS-1$
FORMATTER / Option to insert an empty line before the Javadoc root tag block
    - option id:         "org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert an empty line before the Javadoc root tag block * - option id: "org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public final static String FORMATTER_COMMENT_INSERT_EMPTY_LINE_BEFORE_ROOT_TAGS = "org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags"; //$NON-NLS-1$
FORMATTER / Option to insert an empty line between Javadoc tags of different type
    - option id:         "org.eclipse.jdt.core.formatter.comment.insert_new_line_between_different_tags"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.20
/** * <pre> * FORMATTER / Option to insert an empty line between Javadoc tags of different type * - option id: "org.eclipse.jdt.core.formatter.comment.insert_new_line_between_different_tags" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.20 */
public final static String FORMATTER_COMMENT_INSERT_EMPTY_LINE_BETWEEN_DIFFERENT_TAGS = "org.eclipse.jdt.core.formatter.comment.insert_new_line_between_different_tags"; //$NON-NLS-1$
FORMATTER / Option to insert a new line after Javadoc root tag parameters
    - option id:         "org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a new line after Javadoc root tag parameters * - option id: "org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public final static String FORMATTER_COMMENT_INSERT_NEW_LINE_FOR_PARAMETER = "org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter"; //$NON-NLS-1$
FORMATTER / Option to specify the line length for comments.
    - option id:         "org.eclipse.jdt.core.formatter.comment.line_length"
    - possible values:   "<n>", where n is zero or a positive integer
    - default:           "80"
Since:3.1
/** * <pre> * FORMATTER / Option to specify the line length for comments. * - option id: "org.eclipse.jdt.core.formatter.comment.line_length" * - possible values: "&lt;n&gt;", where n is zero or a positive integer * - default: "80" * </pre> * @since 3.1 */
public final static String FORMATTER_COMMENT_LINE_LENGTH = "org.eclipse.jdt.core.formatter.comment.line_length"; //$NON-NLS-1$
FORMATTER / Option to control whether comments' line length will be counted from their starting position
    - option id:         "org.eclipse.jdt.core.formatter.comment.count_line_length_from_starting_position"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
Since:3.13
/** * <pre> * FORMATTER / Option to control whether comments' line length will be counted from their starting position * - option id: "org.eclipse.jdt.core.formatter.comment.count_line_length_from_starting_position" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @since 3.13 */
public final static String FORMATTER_COMMENT_COUNT_LINE_LENGTH_FROM_STARTING_POSITION = "org.eclipse.jdt.core.formatter.comment.count_line_length_from_starting_position"; //$NON-NLS-1$
FORMATTER / Option to control whether block comments will have new lines at boundaries
    - option id:         "org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.6
/** * <pre> * FORMATTER / Option to control whether block comments will have new lines at boundaries * - option id: "org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.6 */
public final static String FORMATTER_COMMENT_NEW_LINES_AT_BLOCK_BOUNDARIES = "org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries"; //$NON-NLS-1$
FORMATTER / Option to control whether javadoc comments will have new lines at boundaries
    - option id:         "org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.6
/** * <pre> * FORMATTER / Option to control whether javadoc comments will have new lines at boundaries * - option id: "org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.6 */
public final static String FORMATTER_COMMENT_NEW_LINES_AT_JAVADOC_BOUNDARIES = "org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries"; //$NON-NLS-1$
FORMATTER / Option to compact else/if
    - option id:         "org.eclipse.jdt.core.formatter.compact_else_if"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to compact else/if * - option id: "org.eclipse.jdt.core.formatter.compact_else_if" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_COMPACT_ELSE_IF = JavaCore.PLUGIN_ID + ".formatter.compact_else_if"; //$NON-NLS-1$
FORMATTER / Option to set the continuation indentation
    - option id:         "org.eclipse.jdt.core.formatter.continuation_indentation"
    - possible values:   "<n>", where n is zero or a positive integer
    - default:           "2"
Since:3.0
/** * <pre> * FORMATTER / Option to set the continuation indentation * - option id: "org.eclipse.jdt.core.formatter.continuation_indentation" * - possible values: "&lt;n&gt;", where n is zero or a positive integer * - default: "2" * </pre> * @since 3.0 */
public static final String FORMATTER_CONTINUATION_INDENTATION = JavaCore.PLUGIN_ID + ".formatter.continuation_indentation"; //$NON-NLS-1$
FORMATTER / Option to set the continuation indentation inside array initializer
    - option id:         "org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer"
    - possible values:   "<n>", where n is zero or a positive integer
    - default:           "2"
Since:3.0
/** * <pre> * FORMATTER / Option to set the continuation indentation inside array initializer * - option id: "org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer" * - possible values: "&lt;n&gt;", where n is zero or a positive integer * - default: "2" * </pre> * @since 3.0 */
public static final String FORMATTER_CONTINUATION_INDENTATION_FOR_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.continuation_indentation_for_array_initializer"; //$NON-NLS-1$
FORMATTER / Option to use the disabling and enabling tags defined respectively by the FORMATTER_DISABLING_TAG and the FORMATTER_ENABLING_TAG options. - option id: "org.eclipse.jdt.core.formatter.use_on_off_tags" - possible values: TRUE / FALSE - default: FALSE 
Since:3.6
/** * <pre> * FORMATTER / Option to use the disabling and enabling tags defined respectively by the {@link #FORMATTER_DISABLING_TAG} and the {@link #FORMATTER_ENABLING_TAG} options. * - option id: "org.eclipse.jdt.core.formatter.use_on_off_tags" * - possible values: TRUE / FALSE * - default: FALSE * </pre> * @since 3.6 */
public static final String FORMATTER_USE_ON_OFF_TAGS = JavaCore.PLUGIN_ID + ".formatter.use_on_off_tags"; //$NON-NLS-1$
FORMATTER / Option to define the tag to put in a comment to disable the formatting. - option id: "org.eclipse.jdt.core.formatter.disabling_tag" - possible values: String, with constraints mentioned below - default: "@formatter:off" See the FORMATTER_ENABLING_TAG option to re-enable it. 

Note that:

  1. This tag is used by the formatter only if the FORMATTER_USE_ON_OFF_TAGS option is set to TRUE.
  2. The tag name will be trimmed. Hence if it does contain white spaces at the beginning or at the end, they will not be taken into account while searching for the tag in the comments
  3. If a tag is starting with a letter or digit, then it cannot be leaded by another letter or digit to be recognized ("ToDisableFormatter" will not be recognized as a disabling tag "DisableFormatter", but "To:DisableFormatter" will be detected for either tag "DisableFormatter" or ":DisableFormatter").
    Respectively, a tag ending with a letter or digit cannot be followed by a letter or digit to be recognized ("DisableFormatter1" will not be recognized as a disabling tag "DisableFormatter", but "DisableFormatter:1" will be detected either for tag "DisableFormatter" or "DisableFormatter:")
  4. As soon as the formatter encounters the defined disabling tag, it stops to format the code from the beginning of the comment including this tag. If it was already disabled, the tag has no special effect.

    For example, the second default enabling tag "@formatter:off" in the following snippet is not necessary as the formatter was already disabled since the first one:

    class X {
    // @formatter:off
    void foo1() {}
    // @formatter:off
    void foo2() {}
    void bar1() {}
    void bar2() {}
    }
    
  5. If no enabling tag is found by the formatter after the disabling tag, then the end of the snippet won't be formatted.
    For example, when a disabling tag is put at the beginning of the code, then the entire content of a compilation unit is not formatted:
    // @formatter:off
    class X {
    void foo1() {}
    void foo2() {}
    void bar1() {}
    void bar2() {}
    }
    
  6. If a mix of disabling and enabling tags is done in the same comment, then the formatter will only take into account the last encountered tag in the comment.

    For example, in the following snippet, the formatter will be disabled after the comment:

    class X {
    /*
     * This is a comment with a mix of disabling and enabling tags:
     *  - @formatter:off
     *  - @formatter:on
     *  - @formatter:off
     * The formatter will stop to format from the beginning of this comment...
     */
    void foo() {}
    void bar() {}
    }
    
  7. The tag cannot include newline character (i.e. '\n') but it can have white spaces.
    E.g. "format: off" is a valid disabling tag.
    In the future, newlines may be used to support multiple disabling tags.
  8. The tag can include line or block comments start/end tokens.

    If such tags are used, e.g. "//J-", then the single comment can also stop the formatting as shown in the following snippet:

    //J-
    // Formatting was stopped from comment above...
    public class X {
    //J+
    // Formatting is restarted from here...
    void foo() {}
    

    As any disabling tags, as soon as a comment includes it, the formatting stops from this comment:

    public class X {
    // Line comment including the disabling tag: //J-
    // Formatting was stopped from comment above...
    void   foo1()   {}
    //J+
    // Formatting restarts from here...
    void   bar1()   {}
    /*
     * Block comment including the disabling tag: //J+
     * The formatter stops from this comment...
     */
    void   foo2()   {}
    //J+
    // Formatting restarts from here...
    void   bar2()   {}
    /**
     * Javadoc comment including the enabling tag: //J+
     * The formatter stops from this comment...
     */
    void   foo3()   {}
    }
    
Since:3.6
/** * <pre> * FORMATTER / Option to define the tag to put in a comment to disable the formatting. * - option id: "org.eclipse.jdt.core.formatter.disabling_tag" * - possible values: String, with constraints mentioned below * - default: "@formatter:off" * * See the {@link #FORMATTER_ENABLING_TAG} option to re-enable it. * </pre> * * <p> * Note that: * <ol> * <li>This tag is used by the formatter only if the * {@link #FORMATTER_USE_ON_OFF_TAGS} option is set to {@link #TRUE}.</li> * <li>The tag name will be trimmed. Hence if it does contain white spaces * at the beginning or at the end, they will not be taken into account while * searching for the tag in the comments</li> * <li>If a tag is starting with a letter or digit, then it cannot be leaded by * another letter or digit to be recognized * (<code>"ToDisableFormatter"</code> will not be recognized as a disabling tag * <code>"DisableFormatter"</code>, but <code>"To:DisableFormatter"</code> * will be detected for either tag <code>"DisableFormatter"</code> or * <code>":DisableFormatter"</code>).<br> * Respectively, a tag ending with a letter or digit cannot be followed by a letter * or digit to be recognized (<code>"DisableFormatter1"</code> will not be * recognized as a disabling tag <code>"DisableFormatter"</code>, but * <code>"DisableFormatter:1"</code> will be detected either for tag * <code>"DisableFormatter"</code> or <code>"DisableFormatter:"</code>)</li> * <li>As soon as the formatter encounters the defined disabling tag, it stops to * format the code from the beginning of the comment including this tag. If it * was already disabled, the tag has no special effect. * <p> * For example, the second default enabling tag &quot;<b>@formatter:off</b>&quot; * in the following snippet is not necessary as the formatter was already disabled * since the first one: * <pre> * class X { * // @formatter:off * void foo1() {} * // @formatter:off * void foo2() {} * void bar1() {} * void bar2() {} * } * </pre> * </li> * <li>If no enabling tag is found by the formatter after the disabling tag, then * the end of the snippet won't be formatted.<br> * For example, when a disabling tag is put at the beginning of the code, then * the entire content of a compilation unit is not formatted: * <pre> * // @formatter:off * class X { * void foo1() {} * void foo2() {} * void bar1() {} * void bar2() {} * } * </pre> * </li> * <li>If a mix of disabling and enabling tags is done in the same comment, then * the formatter will only take into account the last encountered tag in the * comment. * <p>For example, in the following snippet, the formatter will be disabled after * the comment:</p> * <pre> * class X { * &#47;&#42; * &nbsp;&#42; This is a comment with a mix of disabling and enabling tags: * &nbsp;&#42; - <b>@formatter:off</b> * &nbsp;&#42; - <b>@formatter:on</b> * &nbsp;&#42; - <b>@formatter:off</b> * &nbsp;&#42; The formatter will stop to format from the beginning of this comment... * &nbsp;&#42;&#47; * void foo() {} * void bar() {} * } * </pre> * </li> * <li>The tag cannot include newline character (i.e. '\n') but it can have white * spaces.<br> * E.g. "<b>format: off</b>" is a valid disabling tag.<br> * In the future, newlines may be used to support multiple disabling tags. * </li> * <li>The tag can include line or block comments start/end tokens. * <p>If such tags are used, e.g. "<b>//J-</b>", then the single comment can * also stop the formatting as shown in the following snippet:</p> * <pre> * //J- * // Formatting was stopped from comment above... * public class X { * //J+ * // Formatting is restarted from here... * void foo() {} * </pre> * <p>As any disabling tags, as soon as a comment includes it, * the formatting stops from this comment:</p> * <pre> * public class X { * // Line comment including the disabling tag: //J- * // Formatting was stopped from comment above... * void foo1() {} * //J+ * // Formatting restarts from here... * void bar1() {} * &#47;&#42; * &nbsp;&#42; Block comment including the disabling tag: //J+ * &nbsp;&#42; The formatter stops from this comment... * &nbsp;&#42;&#47; * void foo2() {} * //J+ * // Formatting restarts from here... * void bar2() {} * &#47;&#42;&#42; * &nbsp;&#42; Javadoc comment including the enabling tag: //J+ * &nbsp;&#42; The formatter stops from this comment... * &nbsp;&#42;&#47; * void foo3() {} * } * </pre> * </li> * </ol> * @since 3.6 */
public static final String FORMATTER_DISABLING_TAG = JavaCore.PLUGIN_ID + ".formatter.disabling_tag"; //$NON-NLS-1$
FORMATTER / Option to define the tag to put in a comment to re-enable the formatting after it has been disabled (see FORMATTER_DISABLING_TAG) - option id: "org.eclipse.jdt.core.formatter.enabling_tag" - possible values: String, with constraints mentioned below - default: "@formatter:on" 

Note that:

  1. This tag is used by the formatter only if the FORMATTER_USE_ON_OFF_TAGS option is set to TRUE.
  2. The tag name will be trimmed. Hence if it does contain white spaces at the beginning or at the end, they will not be taken into account while searching for the tag in the comments
  3. If a tag is starting with a letter or digit, then it cannot be leaded by another letter or digit to be recognized ("ReEnableFormatter" will not be recognized as an enabling tag "EnableFormatter", but "Re:EnableFormatter" will be detected for either tag "EnableFormatter" or ":EnableFormatter").
    Respectively, a tag ending with a letter or digit cannot be followed by a letter or digit to be recognized ("EnableFormatter1" will not be recognized as an enabling tag "EnableFormatter", but "EnableFormatter:1" will be detected either for tag "EnableFormatter" or "EnableFormatter:")
  4. As soon as the formatter encounters the defined enabling tag, it re-starts to format the code just after the comment including this tag. If it was already active, i.e. already re-enabled or never disabled, the tag has no special effect.

    For example, the default enabling tag "@formatter:on" in the following snippet is not necessary as the formatter has never been disabled:

    class X {
    void foo1() {}
    void foo2() {}
    // @formatter:on
    void bar1() {}
    void bar2() {}
    }
    
    Or, in the following other snippet, the second enabling tag is not necessary as the formatting will have been re-enabled by the first one:
    class X {
    // @formatter:off
    void foo1() {}
    void foo2() {}
    // @formatter:on
    void bar1() {}
    // @formatter:on
    void bar2() {}
    }
    
  5. If a mix of disabling and enabling tags is done in the same comment, then the formatter will only take into account the last encountered tag in the comment.

    For example, in the following snippet, the formatter will be re-enabled after the comment:

    // @formatter:off
    class X {
    /*
     * This is a comment with a mix of disabling and enabling tags:
     *  - @formatter:on
     *  - @formatter:off
     *  - @formatter:on
     * The formatter will restart to format after this comment...
     */
    void foo() {}
    void bar() {}
    }
    
  6. The tag cannot include newline character (i.e. '\n') but it can have white spaces.
    E.g. "format: on" is a valid enabling tag
    In the future, newlines may be used to support multiple enabling tags.
  7. The tag can include line or block comments start/end tokens. Javadoc tokens are not considered as valid tags.

    If such tags are used, e.g. "//J+", then the single comment can also start the formatting as shown in the following snippet:

    //J-
    // Formatting was stopped from comment above...
    public class X {
    //J+
    // Formatting restarts from here...
    void foo() {}
    }
    

    As any enabling tags, as soon as a comment includes it, the formatting restarts just after the comment:

    public class X {
    //J-
    // Formatting was stopped from comment above...
    void   foo1()   {}
    // Line comment including the enabling tag: //J+
    // Formatting restarts from here...
    void   bar1()   {}
    //J-
    // Formatting was stopped from comment above...
    void   foo2()   {}
    /*
     * Block comment including the enabling tag: //J+
     * The formatter restarts after this comment...
     */
    // Formatting restarts from here...
    void   bar2()   {}
    //J-
    // Formatting was stopped from comment above...
    void   foo3()   {}
    /**
     * Javadoc comment including the enabling tag: //J+
     * The formatter restarts after this comment...
     */
    void   bar3()   {}
    }
    
Since:3.6
/** * <pre> * FORMATTER / Option to define the tag to put in a comment to re-enable the formatting after it has been disabled (see {@link #FORMATTER_DISABLING_TAG}) * - option id: "org.eclipse.jdt.core.formatter.enabling_tag" * - possible values: String, with constraints mentioned below * - default: "@formatter:on" * </pre> * * <p> * Note that: * <ol> * <li>This tag is used by the formatter only if the * {@link #FORMATTER_USE_ON_OFF_TAGS} option is set to {@link #TRUE}.</li> * <li>The tag name will be trimmed. Hence if it does contain white spaces * at the beginning or at the end, they will not be taken into account while * searching for the tag in the comments</li> * <li>If a tag is starting with a letter or digit, then it cannot be leaded by * another letter or digit to be recognized * (<code>"ReEnableFormatter"</code> will not be recognized as an enabling tag * <code>"EnableFormatter"</code>, but <code>"Re:EnableFormatter"</code> * will be detected for either tag <code>"EnableFormatter"</code> or * <code>":EnableFormatter"</code>).<br> * Respectively, a tag ending with a letter or digit cannot be followed by a letter * or digit to be recognized (<code>"EnableFormatter1"</code> will not be * recognized as an enabling tag <code>"EnableFormatter"</code>, but * <code>"EnableFormatter:1"</code> will be detected either for tag * <code>"EnableFormatter"</code> or <code>"EnableFormatter:"</code>)</li> * <li>As soon as the formatter encounters the defined enabling tag, it re-starts * to format the code just after the comment including this tag. If it was already * active, i.e. already re-enabled or never disabled, the tag has no special effect. * <p> * For example, the default enabling tag &quot;<b>@formatter:on</b>&quot; * in the following snippet is not necessary as the formatter has never been * disabled: * <pre> * class X { * void foo1() {} * void foo2() {} * // @formatter:on * void bar1() {} * void bar2() {} * } * </pre> * Or, in the following other snippet, the second enabling tag is not necessary as * the formatting will have been re-enabled by the first one: * <pre> * class X { * // @formatter:off * void foo1() {} * void foo2() {} * // @formatter:on * void bar1() {} * // @formatter:on * void bar2() {} * } * </pre> * </li> * <li>If a mix of disabling and enabling tags is done in the same comment, then * the formatter will only take into account the last encountered tag in the * comment. * <p>For example, in the following snippet, the formatter will be re-enabled after * the comment:</p> * <pre> * // @formatter:off * class X { * &#47;&#42; * &nbsp;&#42; This is a comment with a mix of disabling and enabling tags: * &nbsp;&#42; - <b>@formatter:on</b> * &nbsp;&#42; - <b>@formatter:off</b> * &nbsp;&#42; - <b>@formatter:on</b> * &nbsp;&#42; The formatter will restart to format after this comment... * &nbsp;&#42;&#47; * void foo() {} * void bar() {} * } * </pre> * </li> * <li>The tag cannot include newline character (i.e. '\n') but it can have white * spaces.<br> * E.g. "<b>format: on</b>" is a valid enabling tag<br> * In the future, newlines may be used to support multiple enabling tags. * </li> * <li>The tag can include line or block comments start/end tokens. Javadoc * tokens are not considered as valid tags. * <p>If such tags are used, e.g. "<b>//J+</b>", then the single comment can * also start the formatting as shown in the following snippet:</p> * <pre> * //J- * // Formatting was stopped from comment above... * public class X { * //J+ * // Formatting restarts from here... * void foo() {} * } * </pre> * <p>As any enabling tags, as soon as a comment includes it, * the formatting restarts just after the comment:</p> * <pre> * public class X { * //J- * // Formatting was stopped from comment above... * void foo1() {} * // Line comment including the enabling tag: //J+ * // Formatting restarts from here... * void bar1() {} * //J- * // Formatting was stopped from comment above... * void foo2() {} * &#47;&#42; * &nbsp;&#42; Block comment including the enabling tag: //J+ * &nbsp;&#42; The formatter restarts after this comment... * &nbsp;&#42;&#47; * // Formatting restarts from here... * void bar2() {} * //J- * // Formatting was stopped from comment above... * void foo3() {} * &#47;&#42;&#42; * &nbsp;&#42; Javadoc comment including the enabling tag: //J+ * &nbsp;&#42; The formatter restarts after this comment... * &nbsp;&#42;&#47; * void bar3() {} * } * </pre> * </li> * </ol> * @since 3.6 */
public static final String FORMATTER_ENABLING_TAG = JavaCore.PLUGIN_ID + ".formatter.enabling_tag"; //$NON-NLS-1$
FORMATTER / Option to indent body declarations compare to its enclosing annotation declaration header
    - option id:         "org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.2
/** * <pre> * FORMATTER / Option to indent body declarations compare to its enclosing annotation declaration header * - option id: "org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.2 */
public static final String FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ANNOTATION_DECLARATION_HEADER = JavaCore.PLUGIN_ID + ".formatter.indent_body_declarations_compare_to_annotation_declaration_header"; //$NON-NLS-1$
FORMATTER / Option to indent body declarations compare to its enclosing enum constant header
    - option id:         "org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to indent body declarations compare to its enclosing enum constant header * - option id: "org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.1 */
public static final String FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_CONSTANT_HEADER = JavaCore.PLUGIN_ID + ".formatter.indent_body_declarations_compare_to_enum_constant_header"; //$NON-NLS-1$
FORMATTER / Option to indent body declarations compare to its enclosing enum declaration header
    - option id:         "org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to indent body declarations compare to its enclosing enum declaration header * - option id: "org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.1 */
public static final String FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_DECLARATION_HEADER = JavaCore.PLUGIN_ID + ".formatter.indent_body_declarations_compare_to_enum_declaration_header"; //$NON-NLS-1$
FORMATTER / Option to indent body declarations compare to its enclosing type header
    - option id:         "org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to indent body declarations compare to its enclosing type header * - option id: "org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_TYPE_HEADER = JavaCore.PLUGIN_ID + ".formatter.indent_body_declarations_compare_to_type_header"; //$NON-NLS-1$
FORMATTER / Option to indent breaks compare to cases
    - option id:         "org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to indent breaks compare to cases * - option id: "org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_INDENT_BREAKS_COMPARE_TO_CASES = JavaCore.PLUGIN_ID + ".formatter.indent_breaks_compare_to_cases"; //$NON-NLS-1$
FORMATTER / Option to indent empty lines
    - option id:         "org.eclipse.jdt.core.formatter.indent_empty_lines"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.2
/** * <pre> * FORMATTER / Option to indent empty lines * - option id: "org.eclipse.jdt.core.formatter.indent_empty_lines" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.2 */
public static final String FORMATTER_INDENT_EMPTY_LINES = JavaCore.PLUGIN_ID + ".formatter.indent_empty_lines"; //$NON-NLS-1$
FORMATTER / Option to indent statements inside a block
    - option id:         "org.eclipse.jdt.core.formatter.indent_statements_compare_to_block"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to indent statements inside a block * - option id: "org.eclipse.jdt.core.formatter.indent_statements_compare_to_block" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BLOCK = JavaCore.PLUGIN_ID + ".formatter.indent_statements_compare_to_block"; //$NON-NLS-1$
FORMATTER / Option to indent statements inside the body of a method or a constructor
    - option id:         "org.eclipse.jdt.core.formatter.indent_statements_compare_to_body"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to indent statements inside the body of a method or a constructor * - option id: "org.eclipse.jdt.core.formatter.indent_statements_compare_to_body" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BODY = JavaCore.PLUGIN_ID + ".formatter.indent_statements_compare_to_body"; //$NON-NLS-1$
FORMATTER / Option to indent switch statements compare to cases
    - option id:         "org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to indent switch statements compare to cases * - option id: "org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_CASES = JavaCore.PLUGIN_ID + ".formatter.indent_switchstatements_compare_to_cases"; //$NON-NLS-1$
FORMATTER / Option to indent switch statements compare to switch
    - option id:         "org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to indent switch statements compare to switch * - option id: "org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_SWITCH = JavaCore.PLUGIN_ID + ".formatter.indent_switchstatements_compare_to_switch"; //$NON-NLS-1$
FORMATTER / Option to specify the equivalent number of spaces that represents one indentation
    - option id:         "org.eclipse.jdt.core.formatter.indentation.size"
    - possible values:   "<n>", where n is zero or a positive integer
    - default:           "4"

This option is used only if the tab char is set to MIXED.

See Also:
  • FORMATTER_TAB_CHAR
Since:3.1
/** * <pre> * FORMATTER / Option to specify the equivalent number of spaces that represents one indentation * - option id: "org.eclipse.jdt.core.formatter.indentation.size" * - possible values: "&lt;n&gt;", where n is zero or a positive integer * - default: "4" * </pre> * <p>This option is used only if the tab char is set to MIXED. * </p> * @see #FORMATTER_TAB_CHAR * @since 3.1 */
public static final String FORMATTER_INDENTATION_SIZE = JavaCore.PLUGIN_ID + ".formatter.indentation.size"; //$NON-NLS-1$
FORMATTER / Option to specify how text blocks are indented
    - option id:         "org.eclipse.jdt.core.formatter.text_block_indentation"
    - possible values:   { INDENT_PRESERVE, INDENT_BY_ONE, INDENT_DEFAULT, INDENT_ON_COLUMN }
    - default:           INDENT_DEFAULT
See Also:
Since:3.20
/** * <pre> * FORMATTER / Option to specify how text blocks are indented * - option id: "org.eclipse.jdt.core.formatter.text_block_indentation" * - possible values: { INDENT_PRESERVE, INDENT_BY_ONE, INDENT_DEFAULT, INDENT_ON_COLUMN } * - default: INDENT_DEFAULT * </pre> * @see #INDENT_PRESERVE * @see #INDENT_BY_ONE * @see #INDENT_DEFAULT * @see #INDENT_ON_COLUMN * @since 3.20 */
public static final String FORMATTER_TEXT_BLOCK_INDENTATION = JavaCore.PLUGIN_ID + ".formatter.text_block_indentation"; //$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
Deprecated: All new options must be enabled to activate old strategy FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_MEMBER FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_LOCAL_VARIABLE FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_PARAMETER
/** * <pre> * FORMATTER / Option to insert a new line after an annotation * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 * @deprecated * All new options must be enabled to activate old strategy * {@link #FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_MEMBER} * {@link #FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_LOCAL_VARIABLE} * {@link #FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_PARAMETER} */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation";//$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation on a member (package, class, method, field declaration)
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.4
Deprecated: All new options must be enabled to activate old strategy FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_FIELD FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_METHOD FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_PACKAGE FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_TYPE
/** * <pre> * FORMATTER / Option to insert a new line after an annotation on a member (package, class, method, field declaration) * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.4 * @deprecated * All new options must be enabled to activate old strategy * {@link #FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_FIELD} * {@link #FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_METHOD} * {@link #FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_PACKAGE} * {@link #FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_TYPE} */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_MEMBER = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation_on_member";//$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation on an enum constant declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_enum_constant"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to insert a new line after an annotation on an enum constant declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_enum_constant" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.12 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation_on_enum_constant";//$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation on a field declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.7
/** * <pre> * FORMATTER / Option to insert a new line after an annotation on a field declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_FIELD = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation_on_field";//$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation on a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.7
/** * <pre> * FORMATTER / Option to insert a new line after an annotation on a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_METHOD = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation_on_method";//$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation on a package declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.7
/** * <pre> * FORMATTER / Option to insert a new line after an annotation on a package declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_PACKAGE = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation_on_package";//$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation on a type declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.7
/** * <pre> * FORMATTER / Option to insert a new line after an annotation on a type declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_TYPE = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation_on_type";//$NON-NLS-1$
FORMATTER / Option to insert a new line after a type annotation
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.10
/** * <pre> * FORMATTER / Option to insert a new line after a type annotation * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.10 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_TYPE_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_type_annotation";//$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation on a parameter
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.4
/** * <pre> * FORMATTER / Option to insert a new line after an annotation on a parameter * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.4 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_PARAMETER = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation_on_parameter";//$NON-NLS-1$
FORMATTER / Option to insert a new line after an annotation on a local variable
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.4
/** * <pre> * FORMATTER / Option to insert a new line after an annotation on a local variable * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.4 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_ANNOTATION_ON_LOCAL_VARIABLE = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_annotation_on_local_variable";//$NON-NLS-1$
FORMATTER / Option to insert a new line after a label
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_label"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.6
/** * <pre> * FORMATTER / Option to insert a new line after a label * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_label" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.6 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_LABEL = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_label"; //$NON-NLS-1$
FORMATTER / Option to insert a new line after the opening brace in an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a new line after the opening brace in an array initializer * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_NEW_LINE_AFTER_OPENING_BRACE_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_after_opening_brace_in_array_initializer";//$NON-NLS-1$
FORMATTER / Option to insert a new line at the end of the current file if missing
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a new line at the end of the current file if missing * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_NEW_LINE_AT_END_OF_FILE_IF_MISSING = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_at_end_of_file_if_missing";//$NON-NLS-1$
FORMATTER / Option to insert a new line before the catch keyword in try statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a new line before the catch keyword in try statement * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_NEW_LINE_BEFORE_CATCH_IN_TRY_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_before_catch_in_try_statement"; //$NON-NLS-1$
FORMATTER / Option to insert a new line before the closing brace in an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a new line before the closing brace in an array initializer * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_NEW_LINE_BEFORE_CLOSING_BRACE_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_before_closing_brace_in_array_initializer";//$NON-NLS-1$
FORMATTER / Option to insert a new line before the else keyword in if statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a new line before the else keyword in if statement * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_NEW_LINE_BEFORE_ELSE_IN_IF_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_before_else_in_if_statement"; //$NON-NLS-1$
FORMATTER / Option to insert a new line before the finally keyword in try statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a new line before the finally keyword in try statement * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_NEW_LINE_BEFORE_FINALLY_IN_TRY_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_before_finally_in_try_statement"; //$NON-NLS-1$
FORMATTER / Option to insert a new line before while in do statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a new line before while in do statement * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_NEW_LINE_BEFORE_WHILE_IN_DO_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_before_while_in_do_statement"; //$NON-NLS-1$
FORMATTER / Option to insert a new line in an empty annotation declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.2
Deprecated:Use FORMATTER_KEEP_ANNOTATION_DECLARATION_ON_ONE_LINE instead.
/** * <pre> * FORMATTER / Option to insert a new line in an empty annotation declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.2 * @deprecated Use {@link #FORMATTER_KEEP_ANNOTATION_DECLARATION_ON_ONE_LINE} instead. */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ANNOTATION_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_in_empty_annotation_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a new line in an empty anonymous type declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
Deprecated:Use FORMATTER_KEEP_ANONYMOUS_TYPE_DECLARATION_ON_ONE_LINE instead.
/** * <pre> * FORMATTER / Option to insert a new line in an empty anonymous type declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 * @deprecated Use {@link #FORMATTER_KEEP_ANONYMOUS_TYPE_DECLARATION_ON_ONE_LINE} instead. */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ANONYMOUS_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_in_empty_anonymous_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a new line in an empty block
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
Deprecated:Use FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE, FORMATTER_KEEP_LOOP_BODY_BLOCK_ON_ONE_LINE, FORMATTER_KEEP_CODE_BLOCK_ON_ONE_LINE, and FORMATTER_KEEP_LAMBDA_BODY_BLOCK_ON_ONE_LINE instead.
/** * <pre> * FORMATTER / Option to insert a new line in an empty block * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 * @deprecated Use {@link #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE}, * {@link #FORMATTER_KEEP_LOOP_BODY_BLOCK_ON_ONE_LINE}, * {@link #FORMATTER_KEEP_CODE_BLOCK_ON_ONE_LINE}, and * {@link #FORMATTER_KEEP_LAMBDA_BODY_BLOCK_ON_ONE_LINE} instead. */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_IN_EMPTY_BLOCK = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_in_empty_block"; //$NON-NLS-1$
FORMATTER / Option to insert a new line in an empty enum constant
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
Deprecated:Use FORMATTER_KEEP_ENUM_CONSTANT_DECLARATION_ON_ONE_LINE instead.
/** * <pre> * FORMATTER / Option to insert a new line in an empty enum constant * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 * @deprecated Use {@link #FORMATTER_KEEP_ENUM_CONSTANT_DECLARATION_ON_ONE_LINE} instead. */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_in_empty_enum_constant"; //$NON-NLS-1$
FORMATTER / Option to insert a new line in an empty enum declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
Deprecated:Use FORMATTER_KEEP_ENUM_DECLARATION_ON_ONE_LINE instead.
/** * <pre> * FORMATTER / Option to insert a new line in an empty enum declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 * @deprecated Use {@link #FORMATTER_KEEP_ENUM_DECLARATION_ON_ONE_LINE} instead. */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_IN_EMPTY_ENUM_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_in_empty_enum_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a new line in an empty method body
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
Deprecated:Use FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE instead.
/** * <pre> * FORMATTER / Option to insert a new line in an empty method body * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 * @deprecated Use {@link #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE} instead. */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_IN_EMPTY_METHOD_BODY = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_in_empty_method_body"; //$NON-NLS-1$
FORMATTER / Option to insert a new line in an empty type declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
Deprecated:Use FORMATTER_KEEP_TYPE_DECLARATION_ON_ONE_LINE instead.
/** * <pre> * FORMATTER / Option to insert a new line in an empty type declaration * - option id: "org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 * @deprecated Use {@link #FORMATTER_KEEP_TYPE_DECLARATION_ON_ONE_LINE} instead. */
@Deprecated public static final String FORMATTER_INSERT_NEW_LINE_IN_EMPTY_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_new_line_in_empty_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space after and in wilcard
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after and in wilcard * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_AND_IN_TYPE_PARAMETER = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_and_in_type_parameter"; //$NON-NLS-1$
FORMATTER / Option to insert a space after arrow in switch case
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_arrow_in_switch_case"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.18
/** * <pre> * FORMATTER / Option to insert a space after arrow in switch case * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_arrow_in_switch_case" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.18 */
public static final String FORMATTER_INSERT_SPACE_AFTER_ARROW_IN_SWITCH_CASE = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_arrow_in_switch_case"; //$NON-NLS-1$
FORMATTER / Option to insert a space after arrow in switch default
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_arrow_in_switch_default"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.18
/** * <pre> * FORMATTER / Option to insert a space after arrow in switch default * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_arrow_in_switch_default" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.18 */
public static final String FORMATTER_INSERT_SPACE_AFTER_ARROW_IN_SWITCH_DEFAULT = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_arrow_in_switch_default"; //$NON-NLS-1$
FORMATTER / Option to insert a space after an assignment operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after an assignment operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_ASSIGNMENT_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_assignment_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after at in annotation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after at in annotation * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_AT_IN_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_at_in_annotation"; //$NON-NLS-1$
FORMATTER / Option to insert a space after at in annotation type declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after at in annotation type declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_AT_IN_ANNOTATION_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_at_in_annotation_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a binary operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_binary_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
Deprecated:Use the new settings instead: FORMATTER_INSERT_SPACE_AFTER_MULTIPLICATIVE_OPERATOR, FORMATTER_INSERT_SPACE_AFTER_ADDITIVE_OPERATOR, FORMATTER_INSERT_SPACE_AFTER_STRING_CONCATENATION, FORMATTER_INSERT_SPACE_AFTER_SHIFT_OPERATOR, FORMATTER_INSERT_SPACE_AFTER_RELATIONAL_OPERATOR, FORMATTER_INSERT_SPACE_AFTER_BITWISE_OPERATOR, FORMATTER_INSERT_SPACE_AFTER_LOGICAL_OPERATOR
/** * <pre> * FORMATTER / Option to insert a space after a binary operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_binary_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 * @deprecated Use the new settings instead: {@link #FORMATTER_INSERT_SPACE_AFTER_MULTIPLICATIVE_OPERATOR}, * {@link #FORMATTER_INSERT_SPACE_AFTER_ADDITIVE_OPERATOR}, {@link #FORMATTER_INSERT_SPACE_AFTER_STRING_CONCATENATION}, * {@link #FORMATTER_INSERT_SPACE_AFTER_SHIFT_OPERATOR}, {@link #FORMATTER_INSERT_SPACE_AFTER_RELATIONAL_OPERATOR}, * {@link #FORMATTER_INSERT_SPACE_AFTER_BITWISE_OPERATOR}, {@link #FORMATTER_INSERT_SPACE_AFTER_LOGICAL_OPERATOR} */
public static final String FORMATTER_INSERT_SPACE_AFTER_BINARY_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_binary_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a multiplicative operator (*, /, %)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_multiplicative_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space after a multiplicative operator (*, /, %) * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_multiplicative_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_AFTER_MULTIPLICATIVE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_multiplicative_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after an additive operator (+, -)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_additive_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space after an additive operator (+, -) * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_additive_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_AFTER_ADDITIVE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_additive_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a string concatenation operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_string_concatenation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space after a string concatenation operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_string_concatenation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_AFTER_STRING_CONCATENATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_string_concatenation"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a shift operator (<<, >>, >>>)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_shift_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space after a shift operator (<<, >>, >>>) * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_shift_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_AFTER_SHIFT_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_shift_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a relational operator (<, >, <=, >=, ==, !=)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_relational_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space after a relational operator (<, >, <=, >=, ==, !=) * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_relational_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_AFTER_RELATIONAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_relational_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a bitwise operator (&, ^, |)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_bitwise_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space after a bitwise operator (&, ^, |) * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_bitwise_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_AFTER_BITWISE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_bitwise_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a logical operator (&&, ||)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_logical_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space after a logical operator (&&, ||) * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_logical_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_AFTER_LOGICAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_logical_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the closing angle bracket in explicit type arguments on method/constructor invocations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the closing angle bracket in explicit type arguments on method/constructor invocations * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_CLOSING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_closing_angle_bracket_in_type_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the closing angle bracket in type parameter declarations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the closing angle bracket in type parameter declarations * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_CLOSING_ANGLE_BRACKET_IN_TYPE_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_closing_angle_bracket_in_type_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the closing brace of a block
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the closing brace of a block * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_CLOSING_BRACE_IN_BLOCK = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_closing_brace_in_block"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the closing parenthesis of a cast expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the closing parenthesis of a cast expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_CLOSING_PAREN_IN_CAST = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_closing_paren_in_cast"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the colon in an assert statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the colon in an assert statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COLON_IN_ASSERT = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_colon_in_assert"; //$NON-NLS-1$
FORMATTER / Option to insert a space after colon in a case statement when a opening brace follows the colon
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after colon in a case statement when a opening brace follows the colon * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COLON_IN_CASE = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_colon_in_case"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the colon in a conditional expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the colon in a conditional expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COLON_IN_CONDITIONAL = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_colon_in_conditional"; //$NON-NLS-1$
FORMATTER / Option to insert a space after colon in a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after colon in a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COLON_IN_FOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_colon_in_for"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the colon in a labeled statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the colon in a labeled statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COLON_IN_LABELED_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_colon_in_labeled_statement"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in an allocation expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in an allocation expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ALLOCATION_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_allocation_expression"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in annotation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the comma in annotation * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_annotation"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in an array initializer * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_array_initializer"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the parameters of a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in the parameters of a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_CONSTRUCTOR_DECLARATION_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_constructor_declaration_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the exception names in a throws clause of a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in the exception names in a throws clause of a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_CONSTRUCTOR_DECLARATION_THROWS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_constructor_declaration_throws"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the arguments of an enum constant
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the comma in the arguments of an enum constant * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ENUM_CONSTANT_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_enum_constant_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in enum declarations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the comma in enum declarations * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_ENUM_DECLARATIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_enum_declarations"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the arguments of an explicit constructor call
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in the arguments of an explicit constructor call * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_EXPLICIT_CONSTRUCTOR_CALL_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_explicitconstructorcall_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the increments of a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in the increments of a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_FOR_INCREMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_for_increments"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the initializations of a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in the initializations of a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_FOR_INITS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_for_inits"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the parameters of a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in the parameters of a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_DECLARATION_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_method_declaration_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the exception names in a throws clause of a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in the exception names in a throws clause of a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_DECLARATION_THROWS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_method_declaration_throws"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in the arguments of a method invocation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in the arguments of a method invocation * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_METHOD_INVOCATION_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_method_invocation_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in multiple field declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in multiple field declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_MULTIPLE_FIELD_DECLARATIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_multiple_field_declarations"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in multiple local declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in multiple local declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_MULTIPLE_LOCAL_DECLARATIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_multiple_local_declarations"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in parameterized type reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the comma in parameterized type reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_PARAMETERIZED_TYPE_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_parameterized_type_reference"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in superinterfaces names of a type header
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the comma in superinterfaces names of a type header * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_SUPERINTERFACES = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_superinterfaces"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in switch case expressions list
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_switch_case_expressions"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.18
/** * <pre> * FORMATTER / Option to insert a space after the comma in switch case expressions list * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_switch_case_expressions" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.18 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_SWITCH_CASE_EXPRESSIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_switch_case_expressions"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in explicit type arguments on method/constructor invocations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the comma in explicit type arguments on method/constructor invocations * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_TYPE_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_type_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the comma in type parameter declarations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the comma in type parameter declarations * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_TYPE_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_type_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space after ellipsis
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_ellipsis"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after ellipsis * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_ELLIPSIS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_ellipsis"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the -> in lambda expressions
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.10
/** * <pre> * FORMATTER / Option to insert a space after the -> in lambda expressions * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.10 */
public static final String FORMATTER_INSERT_SPACE_AFTER_LAMBDA_ARROW = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_lambda_arrow"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening angle bracket in parameterized type reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the opening angle bracket in parameterized type reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference";//$NON-NLS-1$
FORMATTER / Option to insert a space after the opening angle bracket in explicit type arguments on method/constructor invocations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the opening angle bracket in explicit type arguments on method/constructor invocations * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_angle_bracket_in_type_arguments";//$NON-NLS-1$
FORMATTER / Option to insert a space after the opening angle bracket in type parameter declarations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the opening angle bracket in type parameter declarations * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_ANGLE_BRACKET_IN_TYPE_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_angle_bracket_in_type_parameters";//$NON-NLS-1$
FORMATTER / Option to insert a space after the opening brace in an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening brace in an array initializer * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACE_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_brace_in_array_initializer"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening bracket inside an array allocation expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening bracket inside an array allocation expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_bracket_in_array_allocation_expression";//$NON-NLS-1$
FORMATTER / Option to insert a space after the opening bracket inside an array reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening bracket inside an array reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_BRACKET_IN_ARRAY_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_bracket_in_array_reference";//$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in annotation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in annotation * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_annotation"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a cast expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a cast expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CAST = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_cast"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a catch
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a catch * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CATCH = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_catch"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_CONSTRUCTOR_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_constructor_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in enum constant
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in enum constant * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_enum_constant"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_FOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_for"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in an if statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in an if statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_IF = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_if"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_method_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a method invocation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a method invocation * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_METHOD_INVOCATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_method_invocation"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a parenthesized expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a parenthesized expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_PARENTHESIZED_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_parenthesized_expression"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a switch statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a switch statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_SWITCH = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_switch"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a synchronized statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a synchronized statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_SYNCHRONIZED = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_synchronized"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a try with resources statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.7.1
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a try with resources statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_TRY = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_try"; //$NON-NLS-1$
FORMATTER / Option to insert a space after the opening parenthesis in a while statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after the opening parenthesis in a while statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_OPENING_PAREN_IN_WHILE = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_opening_paren_in_while"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a postfix operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after a postfix operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_POSTFIX_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_postfix_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after a prefix operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after a prefix operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_PREFIX_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_prefix_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after question mark in a conditional expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after question mark in a conditional expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_QUESTION_IN_CONDITIONAL = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_question_in_conditional"; //$NON-NLS-1$
FORMATTER / Option to insert a space after question mark in a wildcard
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space after question mark in a wildcard * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_QUESTION_IN_WILDCARD = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_question_in_wildcard"; //$NON-NLS-1$
FORMATTER / Option to insert a space after semicolon in a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after semicolon in a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_SEMICOLON_IN_FOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_semicolon_in_for"; //$NON-NLS-1$
FORMATTER / Option to insert a space after semicolons following each resource declaration in a try with 
resources statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.7.1
/** * <pre> * FORMATTER / Option to insert a space after semicolons following each resource declaration in a try with * resources statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7.1 */
public static final String FORMATTER_INSERT_SPACE_AFTER_SEMICOLON_IN_TRY_RESOURCES = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_semicolon_in_try_resources"; //$NON-NLS-1$
FORMATTER / Option to insert a space after an unary operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_unary_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space after an unary operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_unary_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_AFTER_UNARY_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_unary_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space after 'not' operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_after_not_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.20
/** * <pre> * FORMATTER / Option to insert a space after 'not' operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_after_not_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.20 */
public static final String FORMATTER_INSERT_SPACE_AFTER_NOT_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_not_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before and in wildcard
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before and in wildcard * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_AND_IN_TYPE_PARAMETER = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_and_in_type_parameter"; //$NON-NLS-1$
FORMATTER / Option to insert a space before arrow in switch case
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_arrow_in_switch_case"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.18
/** * <pre> * FORMATTER / Option to insert a space before arrow in switch case * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_arrow_in_switch_case" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.18 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_ARROW_IN_SWITCH_CASE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_arrow_in_switch_case"; //$NON-NLS-1$
FORMATTER / Option to insert a space before arrow in switch default
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_arrow_in_switch_default"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.18
/** * <pre> * FORMATTER / Option to insert a space before arrow in switch default * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_arrow_in_switch_default" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.18 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_ARROW_IN_SWITCH_DEFAULT = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_arrow_in_switch_default"; //$NON-NLS-1$
FORMATTER / Option to insert a space before an assignment operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before an assignment operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_ASSIGNMENT_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_assignment_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before at in annotation type declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before at in annotation type declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_AT_IN_ANNOTATION_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_at_in_annotation_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before an binary operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_binary_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
Deprecated:Use the new settings instead: FORMATTER_INSERT_SPACE_BEFORE_MULTIPLICATIVE_OPERATOR, FORMATTER_INSERT_SPACE_BEFORE_ADDITIVE_OPERATOR, FORMATTER_INSERT_SPACE_BEFORE_STRING_CONCATENATION, FORMATTER_INSERT_SPACE_BEFORE_SHIFT_OPERATOR, FORMATTER_INSERT_SPACE_BEFORE_RELATIONAL_OPERATOR, FORMATTER_INSERT_SPACE_BEFORE_BITWISE_OPERATOR, FORMATTER_INSERT_SPACE_BEFORE_LOGICAL_OPERATOR
/** * <pre> * FORMATTER / Option to insert a space before an binary operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_binary_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 * @deprecated Use the new settings instead: {@link #FORMATTER_INSERT_SPACE_BEFORE_MULTIPLICATIVE_OPERATOR}, * {@link #FORMATTER_INSERT_SPACE_BEFORE_ADDITIVE_OPERATOR}, {@link #FORMATTER_INSERT_SPACE_BEFORE_STRING_CONCATENATION}, * {@link #FORMATTER_INSERT_SPACE_BEFORE_SHIFT_OPERATOR}, {@link #FORMATTER_INSERT_SPACE_BEFORE_RELATIONAL_OPERATOR}, * {@link #FORMATTER_INSERT_SPACE_BEFORE_BITWISE_OPERATOR}, {@link #FORMATTER_INSERT_SPACE_BEFORE_LOGICAL_OPERATOR} */
public static final String FORMATTER_INSERT_SPACE_BEFORE_BINARY_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_binary_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before a multiplicative operator (*, /, %)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_multiplicative_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space before a multiplicative operator (*, /, %) * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_multiplicative_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_MULTIPLICATIVE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_multiplicative_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before an additive operator (+, -)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_additive_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space before an additive operator (+, -) * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_additive_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_ADDITIVE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_additive_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before a string concatenation operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_string_concatenation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space before a string concatenation operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_string_concatenation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_STRING_CONCATENATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_string_concatenation"; //$NON-NLS-1$
FORMATTER / Option to insert a space before a shift operator (<<, >>, >>>)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_shift_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space before a shift operator (<<, >>, >>>) * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_shift_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_SHIFT_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_shift_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before a relational operator (<, >, <=, >=, ==, !=)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_relational_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space before a relational operator (<, >, <=, >=, ==, !=) * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_relational_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_RELATIONAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_relational_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before a bitwise operator (&, ^, |)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_bitwise_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space before a bitwise operator (&, ^, |) * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_bitwise_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_BITWISE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_bitwise_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before a logical operator (&&, ||)
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_logical_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to insert a space before a logical operator (&&, ||) * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_logical_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.17 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_LOGICAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_logical_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing angle bracket in parameterized type reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the closing angle bracket in parameterized type reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing angle bracket in explicit type arguments on method/constructor invocations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the closing angle bracket in explicit type arguments on method/constructor invocations * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_angle_bracket_in_type_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing angle bracket in type parameter declarations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the closing angle bracket in type parameter declarations * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_ANGLE_BRACKET_IN_TYPE_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_angle_bracket_in_type_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing brace in an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing brace in an array initializer * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACE_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_brace_in_array_initializer"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing bracket in an array allocation expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing bracket in an array allocation expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_bracket_in_array_allocation_expression";//$NON-NLS-1$
FORMATTER / Option to insert a space before the closing bracket in an array reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing bracket in an array reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_BRACKET_IN_ARRAY_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_bracket_in_array_reference";//$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in annotation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in annotation * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_annotation"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a cast expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a cast expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CAST = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_cast"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a catch
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a catch * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CATCH = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_catch"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_CONSTRUCTOR_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_constructor_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in enum constant
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in enum constant * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_enum_constant"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_FOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_for"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in an if statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in an if statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_IF = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_if"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_method_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a method invocation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a method invocation * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_METHOD_INVOCATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_method_invocation"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a parenthesized expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a parenthesized expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_PARENTHESIZED_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_parenthesized_expression"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a switch statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a switch statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_SWITCH = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_switch"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a synchronized statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a synchronized statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_SYNCHRONIZED = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_synchronized"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a try with resources statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.7.1
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a try with resources statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_TRY = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_try"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the closing parenthesis in a while statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the closing parenthesis in a while statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_CLOSING_PAREN_IN_WHILE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_closing_paren_in_while"; //$NON-NLS-1$
FORMATTER / Option to insert a space before colon in an assert statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before colon in an assert statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_ASSERT = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_colon_in_assert"; //$NON-NLS-1$
FORMATTER / Option to insert a space before colon in a case statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before colon in a case statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_CASE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_colon_in_case"; //$NON-NLS-1$
FORMATTER / Option to insert a space before colon in a conditional expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before colon in a conditional expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_CONDITIONAL = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_colon_in_conditional"; //$NON-NLS-1$
FORMATTER / Option to insert a space before colon in a default statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before colon in a default statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_DEFAULT = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_colon_in_default"; //$NON-NLS-1$
FORMATTER / Option to insert a space before colon in a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before colon in a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_FOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_colon_in_for"; //$NON-NLS-1$
FORMATTER / Option to insert a space before colon in a labeled statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before colon in a labeled statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COLON_IN_LABELED_STATEMENT = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_colon_in_labeled_statement"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in an allocation expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in an allocation expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ALLOCATION_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_allocation_expression"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in annotation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before comma in annotation * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_annotation"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in an array initializer * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_array_initializer"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the parameters of a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the parameters of a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_CONSTRUCTOR_DECLARATION_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_constructor_declaration_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the exception names of the throws clause of a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the exception names of the throws clause of a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_CONSTRUCTOR_DECLARATION_THROWS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_constructor_declaration_throws"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the arguments of enum constant
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before comma in the arguments of enum constant * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ENUM_CONSTANT_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_enum_constant_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in enum declarations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before comma in enum declarations * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_ENUM_DECLARATIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_enum_declarations"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the arguments of an explicit constructor call
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the arguments of an explicit constructor call * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_EXPLICIT_CONSTRUCTOR_CALL_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_explicitconstructorcall_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the increments of a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the increments of a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_FOR_INCREMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_for_increments"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the initializations of a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the initializations of a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_FOR_INITS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_for_inits"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the parameters of a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the parameters of a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_DECLARATION_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_method_declaration_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the exception names of the throws clause of a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the exception names of the throws clause of a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_DECLARATION_THROWS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_method_declaration_throws"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the arguments of a method invocation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the arguments of a method invocation * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_METHOD_INVOCATION_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_method_invocation_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in a multiple field declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in a multiple field declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_MULTIPLE_FIELD_DECLARATIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_multiple_field_declarations"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in a multiple local declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in a multiple local declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_MULTIPLE_LOCAL_DECLARATIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_multiple_local_declarations"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in parameterized type reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before comma in parameterized type reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_PARAMETERIZED_TYPE_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_parameterized_type_reference"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in the superinterfaces names in a type header
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before comma in the superinterfaces names in a type header * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_SUPERINTERFACES = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_superinterfaces"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the comma in switch case expressions list
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_switch_case_expressions"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.18
/** * <pre> * FORMATTER / Option to insert a space before the comma in switch case expressions list * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_switch_case_expressions" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.18 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_SWITCH_CASE_EXPRESSIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_switch_case_expressions"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in explicit type arguments on method/constructor invocations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before comma in explicit type arguments on method/constructor invocations * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_TYPE_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_type_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space before comma in type parameter declarations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before comma in type parameter declarations * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_TYPE_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_type_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space before ellipsis
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_ellipsis"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before ellipsis * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_ellipsis" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_ELLIPSIS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_ellipsis"; //$NON-NLS-1$
FORMATTER / Option to insert a space before lambda ->
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.10
/** * <pre> * FORMATTER / Option to insert a space before lambda -> * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.10 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_LAMBDA_ARROW = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_lambda_arrow"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening angle bracket in parameterized type reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening angle bracket in parameterized type reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_PARAMETERIZED_TYPE_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening angle bracket in explicit type arguments on method/constructor invocations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening angle bracket in explicit type arguments on method/constructor invocations * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_TYPE_ARGUMENTS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_angle_bracket_in_type_arguments"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening angle bracket in type parameter declarations
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening angle bracket in type parameter declarations * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_ANGLE_BRACKET_IN_TYPE_PARAMETERS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_angle_bracket_in_type_parameters"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in an annotation type declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in an annotation type declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ANNOTATION_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_annotation_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in an anonymous type declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in an anonymous type declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ANONYMOUS_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_anonymous_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in an array initializer * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_array_initializer"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in a block
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in a block * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_BLOCK = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_block"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_CONSTRUCTOR_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_constructor_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in an enum constant
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in an enum constant * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_enum_constant"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in an enum declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in an enum declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_ENUM_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_enum_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_method_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in a switch statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in a switch statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_SWITCH = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_switch"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening brace in a type declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening brace in a type declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACE_IN_TYPE_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_brace_in_type_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening bracket in an array allocation expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening bracket in an array allocation expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_ALLOCATION_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_bracket_in_array_allocation_expression";//$NON-NLS-1$
FORMATTER / Option to insert a space before the opening bracket in an array reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening bracket in an array reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_bracket_in_array_reference";//$NON-NLS-1$
FORMATTER / Option to insert a space before the opening bracket in an array type reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening bracket in an array type reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_BRACKET_IN_ARRAY_TYPE_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_bracket_in_array_type_reference"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in annotation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in annotation * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ANNOTATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_annotation"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in annotation type member declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in annotation type member declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ANNOTATION_TYPE_MEMBER_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a catch
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a catch * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_CATCH = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_catch"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_CONSTRUCTOR_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_constructor_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in enum constant
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in enum constant * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_enum_constant"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_FOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_for"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in an if statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in an if statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_IF = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_if"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_method_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a method invocation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a method invocation * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_METHOD_INVOCATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_method_invocation"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a parenthesized expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a parenthesized expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_PARENTHESIZED_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_parenthesized_expression"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a switch statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a switch statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_SWITCH = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_switch"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a synchronized statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a synchronized statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_SYNCHRONIZED = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_synchronized"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a try with resources statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.7.1
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a try with resources statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_TRY = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_try"; //$NON-NLS-1$
FORMATTER / Option to insert a space before the opening parenthesis in a while statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before the opening parenthesis in a while statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_OPENING_PAREN_IN_WHILE = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_opening_paren_in_while"; //$NON-NLS-1$
FORMATTER / Option to insert a space before parenthesized expression in return statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.2
/** * <pre> * FORMATTER / Option to insert a space before parenthesized expression in return statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.2 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_PARENTHESIZED_EXPRESSION_IN_RETURN = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_parenthesized_expression_in_return"; //$NON-NLS-1$
FORMATTER / Option to insert a space before parenthesized expression in throw statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.3
/** * <pre> * FORMATTER / Option to insert a space before parenthesized expression in throw statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.3 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_PARENTHESIZED_EXPRESSION_IN_THROW = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_parenthesized_expression_in_throw"; //$NON-NLS-1$
FORMATTER / Option to insert a space before a postfix operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before a postfix operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_POSTFIX_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_postfix_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before a prefix operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before a prefix operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_PREFIX_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_prefix_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space before question mark in a conditional expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before question mark in a conditional expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional" * - possible values: { INSERT, DO_NOT_INSERT } * - default: INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_QUESTION_IN_CONDITIONAL = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_question_in_conditional"; //$NON-NLS-1$
FORMATTER / Option to insert a space before question mark in a wildcard
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space before question mark in a wildcard * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_QUESTION_IN_WILDCARD = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_question_in_wildcard"; //$NON-NLS-1$
FORMATTER / Option to insert a space before semicolon
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_semicolon"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before semicolon * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_semicolon" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_semicolon"; //$NON-NLS-1$
FORMATTER / Option to insert a space before semicolon in for statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before semicolon in for statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON_IN_FOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_semicolon_in_for"; //$NON-NLS-1$
FORMATTER / Option to insert a space before semicolons following each resource declaration in a try with
resources statement
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.7.1
/** * <pre> * FORMATTER / Option to insert a space before semicolons following each resource declaration in a try with * resources statement * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.7.1 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_SEMICOLON_IN_TRY_RESOURCES = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_semicolon_in_try_resources"; //$NON-NLS-1$
FORMATTER / Option to insert a space before unary operator
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_before_unary_operator"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space before unary operator * - option id: "org.eclipse.jdt.core.formatter.insert_space_before_unary_operator" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BEFORE_UNARY_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_unary_operator"; //$NON-NLS-1$
FORMATTER / Option to insert a space between brackets in an array type reference
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space between brackets in an array type reference * - option id: "org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BETWEEN_BRACKETS_IN_ARRAY_TYPE_REFERENCE = JavaCore.PLUGIN_ID + ".formatter.insert_space_between_brackets_in_array_type_reference"; //$NON-NLS-1$
FORMATTER / Option to insert a space between empty braces in an array initializer
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space between empty braces in an array initializer * - option id: "org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_BRACES_IN_ARRAY_INITIALIZER = JavaCore.PLUGIN_ID + ".formatter.insert_space_between_empty_braces_in_array_initializer"; //$NON-NLS-1$
FORMATTER / Option to insert a space between empty brackets in an array allocation expression
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space between empty brackets in an array allocation expression * - option id: "org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_BRACKETS_IN_ARRAY_ALLOCATION_EXPRESSION = JavaCore.PLUGIN_ID + ".formatter.insert_space_between_empty_brackets_in_array_allocation_expression"; //$NON-NLS-1$
FORMATTER / Option to insert a space between empty parenthesis in an annotation type member declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space between empty parenthesis in an annotation type member declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_ANNOTATION_TYPE_MEMBER_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space between empty parenthesis in a constructor declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space between empty parenthesis in a constructor declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_CONSTRUCTOR_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_between_empty_parens_in_constructor_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space between empty parenthesis in enum constant
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to insert a space between empty parenthesis in enum constant * - option id: "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.1 */
public static final String FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_ENUM_CONSTANT = JavaCore.PLUGIN_ID + ".formatter.insert_space_between_empty_parens_in_enum_constant"; //$NON-NLS-1$
FORMATTER / Option to insert a space between empty parenthesis in a method declaration
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space between empty parenthesis in a method declaration * - option id: "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_METHOD_DECLARATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_between_empty_parens_in_method_declaration"; //$NON-NLS-1$
FORMATTER / Option to insert a space between empty parenthesis in a method invocation
    - option id:         "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation"
    - possible values:   { INSERT, DO_NOT_INSERT }
    - default:           DO_NOT_INSERT
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to insert a space between empty parenthesis in a method invocation * - option id: "org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation" * - possible values: { INSERT, DO_NOT_INSERT } * - default: DO_NOT_INSERT * </pre> * @see JavaCore#INSERT * @see JavaCore#DO_NOT_INSERT * @since 3.0 */
public static final String FORMATTER_INSERT_SPACE_BETWEEN_EMPTY_PARENS_IN_METHOD_INVOCATION = JavaCore.PLUGIN_ID + ".formatter.insert_space_between_empty_parens_in_method_invocation"; //$NON-NLS-1$
FORMATTER / Option to keep else statement on the same line
    - option id:         "org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to keep else statement on the same line * - option id: "org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_KEEP_ELSE_STATEMENT_ON_SAME_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_else_statement_on_same_line"; //$NON-NLS-1$
FORMATTER / Option to keep empty array initializer one one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to keep empty array initializer one one line * - option id: "org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_KEEP_EMPTY_ARRAY_INITIALIZER_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_empty_array_initializer_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to keep guardian clause on one line, in addition to the
            #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE option
    - option id:         "org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to keep guardian clause on one line, in addition to the * #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE option * - option id: "org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @see #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE * @since 3.0 */
public static final String FORMATTER_KEEP_GUARDIAN_CLAUSE_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.format_guardian_clause_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to keep simple if statement on the one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to keep simple if statement on the one line * - option id: "org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_KEEP_SIMPLE_IF_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_imple_if_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to keep then statement on the same line
    - option id:         "org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to keep then statement on the same line * - option id: "org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_KEEP_THEN_STATEMENT_ON_SAME_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_then_statement_on_same_line";//$NON-NLS-1$
FORMATTER / Option to keep a simple 'for' loop body on the same line
    - option id:         "org.eclipse.jdt.core.formatter.keep_simple_for_body_on_same_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.15
/** * <pre> * FORMATTER / Option to keep a simple 'for' loop body on the same line * - option id: "org.eclipse.jdt.core.formatter.keep_simple_for_body_on_same_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.15 */
public static final String FORMATTER_KEEP_SIMPLE_FOR_BODY_ON_SAME_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_simple_for_body_on_same_line";//$NON-NLS-1$
FORMATTER / Option to keep a simple 'while' loop body on the same line
    - option id:         "org.eclipse.jdt.core.formatter.keep_simple_while_body_on_same_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.15
/** * <pre> * FORMATTER / Option to keep a simple 'while' loop body on the same line * - option id: "org.eclipse.jdt.core.formatter.keep_simple_while_body_on_same_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.15 */
public static final String FORMATTER_KEEP_SIMPLE_WHILE_BODY_ON_SAME_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_simple_while_body_on_same_line";//$NON-NLS-1$
FORMATTER / Option to keep a simple 'do-while' loop body on the same line
    - option id:         "org.eclipse.jdt.core.formatter.keep_simple_do_while_body_on_same_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.15
/** * <pre> * FORMATTER / Option to keep a simple 'do-while' loop body on the same line * - option id: "org.eclipse.jdt.core.formatter.keep_simple_do_while_body_on_same_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.15 */
public static final String FORMATTER_KEEP_SIMPLE_DO_WHILE_BODY_ON_SAME_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_simple_do_while_body_on_same_line";//$NON-NLS-1$
FORMATTER / Option to control when a loop body block should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_loop_body_block_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when a loop body block should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_loop_body_block_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @since 3.16 */
public static final String FORMATTER_KEEP_LOOP_BODY_BLOCK_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_loop_body_block_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when an if-then statement body block should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_if_then_body_block_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when an if-then statement body block should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_if_then_body_block_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @see #FORMATTER_KEEP_GUARDIAN_CLAUSE_ON_ONE_LINE for a special case * @since 3.16 */
public static final String FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_if_then_body_block_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when a code block other than if-then and loop body should
            be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_code_block_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when a code block other than if-then and loop body should * be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_code_block_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @since 3.16 */
public static final String FORMATTER_KEEP_CODE_BLOCK_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_code_block_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when a method body should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_method_body_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when a method body should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_method_body_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @since 3.16 */
public static final String FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_method_body_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when a lambda body should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_lambda_body_block_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when a lambda body should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_lambda_body_block_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @since 3.16 */
public static final String FORMATTER_KEEP_LAMBDA_BODY_BLOCK_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_lambda_body_block_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to always keep simple getters and setters on one line, in addition to the
            #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE option
    - option id:         "org.eclipse.jdt.core.formatter.keep_simple_getter_setter_on_one_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to always keep simple getters and setters on one line, in addition to the * #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE option * - option id: "org.eclipse.jdt.core.formatter.keep_simple_getter_setter_on_one_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @see #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE * @since 3.16 */
public static final String FORMATTER_KEEP_SIMPLE_GETTER_SETTER_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_simple_getter_setter_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when a type declaration should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_type_declaration_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
Since:3.0
/** * <pre> * FORMATTER / Option to control when a type declaration should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_type_declaration_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @since 3.16 * @since 3.0 */
public static final String FORMATTER_KEEP_TYPE_DECLARATION_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_type_declaration_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when an anonymous type declaration should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_anonymous_type_declaration_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when an anonymous type declaration should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_anonymous_type_declaration_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @since 3.16 */
public static final String FORMATTER_KEEP_ANONYMOUS_TYPE_DECLARATION_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_anonymous_type_declaration_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when an enum constant declaration body should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_enum_constant_declaration_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when an enum constant declaration body should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_enum_constant_declaration_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @since 3.16 */
public static final String FORMATTER_KEEP_ENUM_CONSTANT_DECLARATION_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_enum_constant_declaration_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when an enum declaration should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_enum_declaration_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when an enum declaration should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_enum_declaration_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @since 3.16 */
public static final String FORMATTER_KEEP_ENUM_DECLARATION_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_enum_declaration_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to control when an annotation declaration should be kept on one line
    - option id:         "org.eclipse.jdt.core.formatter.keep_annotation_declaration_on_one_line"
    - possible values:   { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM,
                           ONE_LINE_ALWAYS, ONE_LINE_PRESERVE }
    - default:           ONE_LINE_NEVER
See Also:
Since:3.16
/** * <pre> * FORMATTER / Option to control when an annotation declaration should be kept on one line * - option id: "org.eclipse.jdt.core.formatter.keep_annotation_declaration_on_one_line" * - possible values: { ONE_LINE_NEVER, ONE_LINE_IF_EMPTY, ONE_LINE_IF_SINGLE_ITEM, * ONE_LINE_ALWAYS, ONE_LINE_PRESERVE } * - default: ONE_LINE_NEVER * </pre> * @see #ONE_LINE_NEVER * @see #ONE_LINE_IF_EMPTY * @see #ONE_LINE_IF_SINGLE_ITEM * @see #ONE_LINE_ALWAYS * @see #ONE_LINE_PRESERVE * @since 3.16 */
public static final String FORMATTER_KEEP_ANNOTATION_DECLARATION_ON_ONE_LINE = JavaCore.PLUGIN_ID + ".formatter.keep_annotation_declaration_on_one_line"; //$NON-NLS-1$
FORMATTER / Option to specify the length of the page. Beyond this length, the formatter will try to split the code
    - option id:         "org.eclipse.jdt.core.formatter.lineSplit"
    - possible values:   "<n>", where n is zero or a positive integer
    - default:           "120"
Since:3.0
/** * <pre> * FORMATTER / Option to specify the length of the page. Beyond this length, the formatter will try to split the code * - option id: "org.eclipse.jdt.core.formatter.lineSplit" * - possible values: "&lt;n&gt;", where n is zero or a positive integer * - default: "120" * </pre> * @since 3.0 */
public static final String FORMATTER_LINE_SPLIT = JavaCore.PLUGIN_ID + ".formatter.lineSplit"; //$NON-NLS-1$
FORMATTER / Option to indent block comments that start on the first column
    - option id:         "org.eclipse.jdt.core.formatter.formatter.never_indent_block_comments_on_first_column"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
Note that this option is ignored if the formatter is created with the mode ToolFactory.M_FORMAT_NEW.
See Also:
Since:3.3
/** * <pre> * FORMATTER / Option to indent block comments that start on the first column * - option id: "org.eclipse.jdt.core.formatter.formatter.never_indent_block_comments_on_first_column" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * Note that this option is ignored if the formatter is created with the mode {@link ToolFactory#M_FORMAT_NEW}. * @see #TRUE * @see #FALSE * @see ToolFactory#createCodeFormatter(Map, int) * @since 3.3 */
public static final String FORMATTER_NEVER_INDENT_BLOCK_COMMENTS_ON_FIRST_COLUMN = JavaCore.PLUGIN_ID + ".formatter.never_indent_block_comments_on_first_column"; //$NON-NLS-1$
FORMATTER / Option to indent line comments that start on the first column
    - option id:         "org.eclipse.jdt.core.formatter.formatter.never_indent_line_comments_on_first_column"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
Note that:
See Also:
Since:3.3
/** * <pre> * FORMATTER / Option to indent line comments that start on the first column * - option id: "org.eclipse.jdt.core.formatter.formatter.never_indent_line_comments_on_first_column" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * Note that: * <ul> * <li>this option is ignored if the formatter is created with the mode {@link ToolFactory#M_FORMAT_NEW}</li> * <li>even with this option activated, the formatter still can ignore line comments starting at first column * if the option {@link #FORMATTER_COMMENT_FORMAT_LINE_COMMENT_STARTING_ON_FIRST_COLUMN} is set to {@value #FALSE}</li> * </ul> * @see #TRUE * @see #FALSE * @see ToolFactory#createCodeFormatter(Map, int) * @since 3.3 */
public static final String FORMATTER_NEVER_INDENT_LINE_COMMENTS_ON_FIRST_COLUMN = JavaCore.PLUGIN_ID + ".formatter.never_indent_line_comments_on_first_column"; //$NON-NLS-1$
FORMATTER / Option to specify the number of empty lines to preserve
    - option id:         "org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve"
    - possible values:   "<n>", where n is zero or a positive integer
    - default:           "0"
Since:3.0
/** * <pre> * FORMATTER / Option to specify the number of empty lines to preserve * - option id: "org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve" * - possible values: "&lt;n&gt;", where n is zero or a positive integer * - default: "0" * </pre> * @since 3.0 */
public static final String FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE = JavaCore.PLUGIN_ID + ".formatter.number_of_empty_lines_to_preserve"; //$NON-NLS-1$
FORMATTER / Option to specify whether the formatter can join wrapped lines or not
		For example, the wrapped lines of method foo return statement in following test case:
			class X {
			String foo() {
			return "select x "
			       + "from y "
			       + "where z=a";
			}
			}
		will be preserved by the formatter when the new preference is used
		even if the maximum line width would give it enough space to join the lines.
		Hence produces the following output:
			class X {
			    String foo() {
			        return "select x "
			                + "from y "
			                + "where z=a";
			    }
			}
    - option id:         "org.eclipse.jdt.core.formatter.join_wrapped_lines"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
Since:3.5
/** * <pre> * FORMATTER / Option to specify whether the formatter can join wrapped lines or not * * For example, the wrapped lines of method foo return statement in following test case: * class X { * String foo() { * return "select x " * + "from y " * + "where z=a"; * } * } * * will be preserved by the formatter when the new preference is used * even if the maximum line width would give it enough space to join the lines. * Hence produces the following output: * class X { * String foo() { * return "select x " * + "from y " * + "where z=a"; * } * } * * - option id: "org.eclipse.jdt.core.formatter.join_wrapped_lines" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @since 3.5 */
public static final String FORMATTER_JOIN_WRAPPED_LINES = JavaCore.PLUGIN_ID + ".formatter.join_wrapped_lines"; //$NON-NLS-1$
FORMATTER / Option to specify whether the formatter can join text lines in comments or not
		For example, the following comment:
			/**
			 * The foo method.
			 * foo is a substitute for bar.
			 */
			public class X {
			}
		will be unchanged by the formatter when this new preference is used,
		even if the maximum line width would give it enough space to join the lines.
    - option id:         "org.eclipse.jdt.core.formatter.join_lines_in_comments"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
Since:3.5
/** * <pre> * FORMATTER / Option to specify whether the formatter can join text lines in comments or not * * For example, the following comment: * /** * * The foo method. * * foo is a substitute for bar. * *&#0047; * public class X { * } * * will be unchanged by the formatter when this new preference is used, * even if the maximum line width would give it enough space to join the lines. * * - option id: "org.eclipse.jdt.core.formatter.join_lines_in_comments" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * @since 3.5 */
public static final String FORMATTER_JOIN_LINES_IN_COMMENTS = JavaCore.PLUGIN_ID + ".formatter.join_lines_in_comments"; //$NON-NLS-1$
FORMATTER / Option to specify whether or not empty statement should be on a new line
    - option id:         "org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to specify whether or not empty statement should be on a new line * - option id: "org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.0 */
public static final String FORMATTER_PUT_EMPTY_STATEMENT_ON_NEW_LINE = JavaCore.PLUGIN_ID + ".formatter.put_empty_statement_on_new_line"; //$NON-NLS-1$
FORMATTER / Option to specify the tabulation size
    - option id:         "org.eclipse.jdt.core.formatter.tabulation.char"
    - possible values:   { TAB, SPACE, MIXED }
    - default:           TAB
More values may be added in the future.
See Also:
Since:3.0
/** * <pre> * FORMATTER / Option to specify the tabulation size * - option id: "org.eclipse.jdt.core.formatter.tabulation.char" * - possible values: { TAB, SPACE, MIXED } * - default: TAB * </pre> * More values may be added in the future. * * @see JavaCore#TAB * @see JavaCore#SPACE * @see #MIXED * @since 3.0 */
public static final String FORMATTER_TAB_CHAR = JavaCore.PLUGIN_ID + ".formatter.tabulation.char"; //$NON-NLS-1$
FORMATTER / Option to specify the equivalent number of spaces that represents one tabulation
    - option id:         "org.eclipse.jdt.core.formatter.tabulation.size"
    - possible values:   "<n>", where n is zero or a positive integer
    - default:           "4"
Since:3.0
/** * <pre> * FORMATTER / Option to specify the equivalent number of spaces that represents one tabulation * - option id: "org.eclipse.jdt.core.formatter.tabulation.size" * - possible values: "&lt;n&gt;", where n is zero or a positive integer * - default: "4" * </pre> * @since 3.0 */
public static final String FORMATTER_TAB_SIZE = JavaCore.PLUGIN_ID + ".formatter.tabulation.size"; //$NON-NLS-1$
FORMATTER / Option to use tabulations for indentation and spaces for line wrapping
    - option id:         "org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations"
    - possible values:   { TRUE, FALSE }
    - default:           FALSE
See Also:
Since:3.1
/** * <pre> * FORMATTER / Option to use tabulations for indentation and spaces for line wrapping * - option id: "org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations" * - possible values: { TRUE, FALSE } * - default: FALSE * </pre> * @see #TRUE * @see #FALSE * @since 3.1 */
public static final String FORMATTER_USE_TABS_ONLY_FOR_LEADING_INDENTATIONS = JavaCore.PLUGIN_ID + ".formatter.use_tabs_only_for_leading_indentations"; //$NON-NLS-1$
FORMATTER / Option to wrap before the multiplicative operator (*, /, %)
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_multiplicative_operator"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS is set.
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to wrap before the multiplicative operator (*, /, %) * - option id: "org.eclipse.jdt.core.formatter.wrap_before_multiplicative_operator" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS} is set. * @see #TRUE * @see #FALSE * @since 3.17 */
public static final String FORMATTER_WRAP_BEFORE_MULTIPLICATIVE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_multiplicative_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap before the additive operator (+, -)
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_additive_operator"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_ADDITIVE_OPERATOR is set.
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to wrap before the additive operator (+, -) * - option id: "org.eclipse.jdt.core.formatter.wrap_before_additive_operator" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_ADDITIVE_OPERATOR} is set. * @see #TRUE * @see #FALSE * @since 3.17 */
public static final String FORMATTER_WRAP_BEFORE_ADDITIVE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_additive_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap before the string concatenation operator
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_string_concatenation"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_STRING_CONCATENATION is set.
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to wrap before the string concatenation operator * - option id: "org.eclipse.jdt.core.formatter.wrap_before_string_concatenation" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_STRING_CONCATENATION} is set. * @see #TRUE * @see #FALSE * @since 3.17 */
public static final String FORMATTER_WRAP_BEFORE_STRING_CONCATENATION = JavaCore.PLUGIN_ID + ".formatter.wrap_before_string_concatenation"; //$NON-NLS-1$
FORMATTER / Option to wrap before the shift operator (<<, >>, >>>)
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_shift_operator"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_SHIFT_OPERATOR is set.
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to wrap before the shift operator (<<, >>, >>>) * - option id: "org.eclipse.jdt.core.formatter.wrap_before_shift_operator" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_SHIFT_OPERATOR} is set. * @see #TRUE * @see #FALSE * @since 3.17 */
public static final String FORMATTER_WRAP_BEFORE_SHIFT_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_shift_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap before the relational operator (<, >, <=, >=, ==, !=)
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_RELATIONAL_OPERATOR is set.
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to wrap before the relational operator (<, >, <=, >=, ==, !=) * - option id: "org.eclipse.jdt.core.formatter.wrap_before_" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_RELATIONAL_OPERATOR} is set. * @see #TRUE * @see #FALSE * @since 3.17 */
public static final String FORMATTER_WRAP_BEFORE_RELATIONAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_relational_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap before the bitwise operator (&, ^, |)
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_bitwise_operator"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_BITWISE_OPERATOR is set.
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to wrap before the bitwise operator (&, ^, |) * - option id: "org.eclipse.jdt.core.formatter.wrap_before_bitwise_operator" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_BITWISE_OPERATOR} is set. * @see #TRUE * @see #FALSE * @since 3.17 */
public static final String FORMATTER_WRAP_BEFORE_BITWISE_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_bitwise_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap before the logical operator (&&, ||)
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_logical_operator"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_LOGICAL_OPERATOR is set.
See Also:
Since:3.17
/** * <pre> * FORMATTER / Option to wrap before the logical operator (&&, ||) * - option id: "org.eclipse.jdt.core.formatter.wrap_before_logical_operator" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_LOGICAL_OPERATOR} is set. * @see #TRUE * @see #FALSE * @since 3.17 */
public static final String FORMATTER_WRAP_BEFORE_LOGICAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_logical_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap before the binary operator
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_binary_operator"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION is set.
See Also:
Since:3.3
Deprecated:Use the new options instead: FORMATTER_WRAP_BEFORE_MULTIPLICATIVE_OPERATOR, FORMATTER_WRAP_BEFORE_ADDITIVE_OPERATOR, FORMATTER_WRAP_BEFORE_STRING_CONCATENATION, FORMATTER_WRAP_BEFORE_BITWISE_OPERATOR, FORMATTER_WRAP_BEFORE_LOGICAL_OPERATOR
/** * <pre> * FORMATTER / Option to wrap before the binary operator * - option id: "org.eclipse.jdt.core.formatter.wrap_before_binary_operator" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION} is set. * @see #TRUE * @see #FALSE * @since 3.3 * @deprecated Use the new options instead: {@link #FORMATTER_WRAP_BEFORE_MULTIPLICATIVE_OPERATOR}, * {@link #FORMATTER_WRAP_BEFORE_ADDITIVE_OPERATOR}, {@link #FORMATTER_WRAP_BEFORE_STRING_CONCATENATION}, * {@link #FORMATTER_WRAP_BEFORE_BITWISE_OPERATOR}, {@link #FORMATTER_WRAP_BEFORE_LOGICAL_OPERATOR} */
public static final String FORMATTER_WRAP_BEFORE_BINARY_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_binary_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap before the '|' operator in multi-catch statements
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_UNION_TYPE_IN_MULTICATCH is set.
See Also:
Since:3.7.1
/** * <pre> * FORMATTER / Option to wrap before the '|' operator in multi-catch statements * - option id: "org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_UNION_TYPE_IN_MULTICATCH} is set. * @see #TRUE * @see #FALSE * @since 3.7.1 */
public static final String FORMATTER_WRAP_BEFORE_OR_OPERATOR_MULTICATCH = JavaCore.PLUGIN_ID + ".formatter.wrap_before_or_operator_multicatch"; //$NON-NLS-1$
FORMATTER / Option to wrap before the '?' and ':' operators in conditional expressions
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_conditional_operator"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION is set.
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to wrap before the '?' and ':' operators in conditional expressions * - option id: "org.eclipse.jdt.core.formatter.wrap_before_conditional_operator" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION} is set. * @see #TRUE * @see #FALSE * @since 3.12 */
public static final String FORMATTER_WRAP_BEFORE_CONDITIONAL_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_conditional_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap before the assignment operator
    - option id:         "org.eclipse.jdt.core.formatter.wrap_before_assignment_operator"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE
This option is used only if the option FORMATTER_ALIGNMENT_FOR_ASSIGNMENT is set.
See Also:
Since:3.12
/** * <pre> * FORMATTER / Option to wrap before the assignment operator * - option id: "org.eclipse.jdt.core.formatter.wrap_before_assignment_operator" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * This option is used only if the option {@link #FORMATTER_ALIGNMENT_FOR_ASSIGNMENT} is set. * @see #TRUE * @see #FALSE * @since 3.12 */
public static final String FORMATTER_WRAP_BEFORE_ASSIGNMENT_OPERATOR = JavaCore.PLUGIN_ID + ".formatter.wrap_before_assignment_operator"; //$NON-NLS-1$
FORMATTER / Option to wrap outer expressions in nested expressions
    - option id:         "org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested"
    - possible values:   { TRUE, FALSE }
    - default:           TRUE

This option changes the formatter behavior when nested method calls are encountered. Since 3.6, the formatter tries to wrap outermost method calls first to have a better output.

For example, let's say we are using the Eclipse built-in profile with a max line width=40+space for tab policy. Then consider the following snippet:

public class X01 {
    void test() {
        foo(bar(1, 2, 3, 4), bar(5, 6, 7, 8));
    }
}

With this new strategy, the formatter will wrap the line earlier, between the arguments of the message call for this example, and then it will allow to keep each nested call on a single line.

Hence, the output will be:

public class X01 {
    void test() {
        foo(bar(1, 2, 3, 4),
            bar(5, 6, 7, 8));
    }
}

Important notes:

  1. This new behavior is automatically activated (i.e. the default value for this preference is TRUE). If the backward compatibility regarding previous versions' formatter behavior (i.e. before 3.6 version) is necessary, then the preference needs to be set to FALSE to retrieve the previous formatter behavior.
  2. The new strategy currently only applies to nested method calls, but might be extended to other nested expressions in future versions
See Also:
Since:3.6
/** * <pre> * FORMATTER / Option to wrap outer expressions in nested expressions * - option id: "org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested" * - possible values: { TRUE, FALSE } * - default: TRUE * </pre> * <p> * This option changes the formatter behavior when nested method calls are encountered. * Since 3.6, the formatter tries to wrap outermost method calls first to have a better output.</p> * <p>For example, let's say we are using the Eclipse built-in profile with a max line width=40+space for tab policy. * Then consider the following snippet:</p> * <pre> * public class X01 { * void test() { * foo(bar(1, 2, 3, 4), bar(5, 6, 7, 8)); * } * } * </pre> * <p>With this new strategy, the formatter will wrap the line earlier, between the arguments of the message call * for this example, and then it will allow to keep each nested call on a single line.</p> * <p>Hence, the output will be:</p> * <pre> * public class X01 { * void test() { * foo(bar(1, 2, 3, 4), * bar(5, 6, 7, 8)); * } * } * </pre> * <p><b><u>Important notes</u></b>:</p> * <ol> * <li>This new behavior is automatically activated (i.e. the default value for this preference is {@link #TRUE}). * If the backward compatibility regarding previous versions' formatter behavior (i.e. before 3.6 version) is necessary, * then the preference needs to be set to {@link #FALSE} to retrieve the previous formatter behavior.</li> * <li>The new strategy currently only applies to nested method calls, but might be extended to other nested expressions in future versions</li> * </ol> * * @see #TRUE * @see #FALSE * @since 3.6 */
public static final String FORMATTER_WRAP_OUTER_EXPRESSIONS_WHEN_NESTED = JavaCore.PLUGIN_ID + ".formatter.wrap_outer_expressions_when_nested"; //$NON-NLS-1$
FORMATTER / The wrapping is done by indenting by one compare to the current indentation.
Since:3.0
/** * <pre> * FORMATTER / The wrapping is done by indenting by one compare to the current indentation. * </pre> * @since 3.0 */
public static final int INDENT_BY_ONE= 2;
FORMATTER / The wrapping is done by using the current indentation.
Since:3.0
/** * <pre> * FORMATTER / The wrapping is done by using the current indentation. * </pre> * @since 3.0 */
public static final int INDENT_DEFAULT= 0;
FORMATTER / The wrapping is done by indenting on column under the splitting location.
Since:3.0
/** * <pre> * FORMATTER / The wrapping is done by indenting on column under the splitting location. * </pre> * @since 3.0 */
public static final int INDENT_ON_COLUMN = 1;
FORMATTER / Indentation is not touched, it's preserved from original source.
Since:3.20
/** * <pre> * FORMATTER / Indentation is not touched, it's preserved from original source. * </pre> * @since 3.20 */
public static final int INDENT_PRESERVE = 3;
FORMATTER / Possible value for the option FORMATTER_TAB_CHAR
See Also:
Since:3.1
/** * <pre> * FORMATTER / Possible value for the option FORMATTER_TAB_CHAR * </pre> * @since 3.1 * @see JavaCore#TAB * @see JavaCore#SPACE * @see #FORMATTER_TAB_CHAR */
public static final String MIXED = "mixed"; //$NON-NLS-1$
FORMATTER / Value to set a brace location at the start of the next line with
            the right indentation.
See Also:
Since:3.0
/** * <pre> * FORMATTER / Value to set a brace location at the start of the next line with * the right indentation. * </pre> * @see #FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_ARRAY_INITIALIZER * @see #FORMATTER_BRACE_POSITION_FOR_BLOCK * @see #FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_SWITCH * @see #FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_LAMBDA_BODY * @since 3.0 */
public static final String NEXT_LINE = "next_line"; //$NON-NLS-1$
FORMATTER / Value to set a brace location at the start of the next line if a wrapping
            occured.
See Also:
Since:3.0
/** * <pre> * FORMATTER / Value to set a brace location at the start of the next line if a wrapping * occured. * </pre> * @see #FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_ARRAY_INITIALIZER * @see #FORMATTER_BRACE_POSITION_FOR_BLOCK * @see #FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_SWITCH * @see #FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_LAMBDA_BODY * @since 3.0 */
public static final String NEXT_LINE_ON_WRAP = "next_line_on_wrap"; //$NON-NLS-1$
FORMATTER / Value to set a brace location at the start of the next line with
            an extra indentation.
See Also:
Since:3.0
/** * <pre> * FORMATTER / Value to set a brace location at the start of the next line with * an extra indentation. * </pre> * @see #FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_ARRAY_INITIALIZER * @see #FORMATTER_BRACE_POSITION_FOR_BLOCK * @see #FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_SWITCH * @see #FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION * @see #FORMATTER_BRACE_POSITION_FOR_LAMBDA_BODY * @since 3.0 */
public static final String NEXT_LINE_SHIFTED = "next_line_shifted"; //$NON-NLS-1$
FORMATTER / Value to set opening and closing parentheses location in common lines with
            their contents (or simply a single line if the parentheses are empty).
See Also:
Since:3.12
/** * <pre> * FORMATTER / Value to set opening and closing parentheses location in common lines with * their contents (or simply a single line if the parentheses are empty). * </pre> * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_INVOCATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ENUM_CONSTANT_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_IF_WHILE_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_FOR_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_SWITCH_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_TRY_CLAUSE * @see #FORMATTER_PARENTHESES_POSITIONS_IN_CATCH_CLAUSE * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ANNOTATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_LAMBDA_DECLARATION * @since 3.12 */
public static final String COMMON_LINES = "common_lines"; //$NON-NLS-1$
FORMATTER / Value to set opening and closing parentheses location on a common line
            if the parentheses are empty and otherwise in separate lines from their contents.
See Also:
Since:3.12
/** * <pre> * FORMATTER / Value to set opening and closing parentheses location on a common line * if the parentheses are empty and otherwise in separate lines from their contents. * </pre> * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_INVOCATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ENUM_CONSTANT_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ANNOTATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_LAMBDA_DECLARATION * @since 3.12 */
public static final String SEPARATE_LINES_IF_NOT_EMPTY = "separate_lines_if_not_empty"; //$NON-NLS-1$
FORMATTER / Value to set opening and closing parentheses location on separate lines from their
            contents if the contents are wrapped, and in common line if they fit in line width.
See Also:
Since:3.12
/** * <pre> * FORMATTER / Value to set opening and closing parentheses location on separate lines from their * contents if the contents are wrapped, and in common line if they fit in line width. * </pre> * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_INVOCATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ENUM_CONSTANT_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_IF_WHILE_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_FOR_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_SWITCH_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_TRY_CLAUSE * @see #FORMATTER_PARENTHESES_POSITIONS_IN_CATCH_CLAUSE * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ANNOTATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_LAMBDA_DECLARATION * @since 3.12 */
public static final String SEPARATE_LINES_IF_WRAPPED = "separate_lines_if_wrapped"; //$NON-NLS-1$
FORMATTER / Value to set parentheses location on separate lines from their contents,
            that is put a line break after the opening parenthesis and before
            the closing parenthesis.
See Also:
Since:3.12
/** * <pre> * FORMATTER / Value to set parentheses location on separate lines from their contents, * that is put a line break after the opening parenthesis and before * the closing parenthesis. * </pre> * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_INVOCATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ENUM_CONSTANT_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_IF_WHILE_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_FOR_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_SWITCH_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_TRY_CLAUSE * @see #FORMATTER_PARENTHESES_POSITIONS_IN_CATCH_CLAUSE * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ANNOTATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_LAMBDA_DECLARATION * @since 3.12 */
public static final String SEPARATE_LINES = "separate_lines"; //$NON-NLS-1$
FORMATTER / Value to set opening and closing parentheses location to be preserved
            from the original source.
See Also:
Since:3.12
/** * <pre> * FORMATTER / Value to set opening and closing parentheses location to be preserved * from the original source. * </pre> * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_METHOD_INVOCATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ENUM_CONSTANT_DECLARATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_IF_WHILE_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_FOR_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_SWITCH_STATEMENT * @see #FORMATTER_PARENTHESES_POSITIONS_IN_TRY_CLAUSE * @see #FORMATTER_PARENTHESES_POSITIONS_IN_CATCH_CLAUSE * @see #FORMATTER_PARENTHESES_POSITIONS_IN_ANNOTATION * @see #FORMATTER_PARENTHESES_POSITIONS_IN_LAMBDA_DECLARATION * @since 3.12 */
public static final String PRESERVE_POSITIONS = "preserve_positions"; //$NON-NLS-1$
FORMATTER / Value to never keep braced code on one line.
See Also:
Since:3.16
/** * <pre> * FORMATTER / Value to never keep braced code on one line. * </pre> * @see #FORMATTER_KEEP_LOOP_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_CODE_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE * @see #FORMATTER_KEEP_LAMBDA_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANONYMOUS_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_CONSTANT_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANNOTATION_DECLARATION_ON_ONE_LINE * @since 3.16 */
public static final String ONE_LINE_NEVER = "one_line_never"; //$NON-NLS-1$
FORMATTER / Value to keep braced code on one line only if it's empty.
See Also:
Since:3.16
/** * <pre> * FORMATTER / Value to keep braced code on one line only if it's empty. * </pre> * @see #FORMATTER_KEEP_LOOP_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_CODE_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE * @see #FORMATTER_KEEP_LAMBDA_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANONYMOUS_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_CONSTANT_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANNOTATION_DECLARATION_ON_ONE_LINE * @since 3.16 */
public static final String ONE_LINE_IF_EMPTY = "one_line_if_empty"; //$NON-NLS-1$
FORMATTER / Value to keep braced code on one line if it contains at most a single
            item.
See Also:
Since:3.16
/** * <pre> * FORMATTER / Value to keep braced code on one line if it contains at most a single * item. * </pre> * @see #FORMATTER_KEEP_LOOP_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE * @see #FORMATTER_KEEP_LAMBDA_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANONYMOUS_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_CONSTANT_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANNOTATION_DECLARATION_ON_ONE_LINE * @since 3.16 */
public static final String ONE_LINE_IF_SINGLE_ITEM = "one_line_if_single_item"; //$NON-NLS-1$
FORMATTER / Value to always keep braced code on one line, as long as it doesn't
            exceed the line width limit.
See Also:
Since:3.16
/** * <pre> * FORMATTER / Value to always keep braced code on one line, as long as it doesn't * exceed the line width limit. * </pre> * @see #FORMATTER_KEEP_LOOP_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE * @see #FORMATTER_KEEP_LAMBDA_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANONYMOUS_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_CONSTANT_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANNOTATION_DECLARATION_ON_ONE_LINE * @since 3.16 */
public static final String ONE_LINE_ALWAYS = "one_line_always"; //$NON-NLS-1$
FORMATTER / Value to keep braced code on one line as long as it doesn't exceed the
            line width limit and it was already in one line in the original source.
See Also:
Since:3.16
/** * <pre> * FORMATTER / Value to keep braced code on one line as long as it doesn't exceed the * line width limit and it was already in one line in the original source. * </pre> * @see #FORMATTER_KEEP_LOOP_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_IF_THEN_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_METHOD_BODY_ON_ONE_LINE * @see #FORMATTER_KEEP_LAMBDA_BODY_BLOCK_ON_ONE_LINE * @see #FORMATTER_KEEP_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANONYMOUS_TYPE_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_CONSTANT_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ENUM_DECLARATION_ON_ONE_LINE * @see #FORMATTER_KEEP_ANNOTATION_DECLARATION_ON_ONE_LINE * @since 3.16 */
public static final String ONE_LINE_PRESERVE = "one_line_preserve"; //$NON-NLS-1$
FORMATTER / Value to set an option to true.
Since:3.0
/** * <pre> * FORMATTER / Value to set an option to true. * </pre> * @since 3.0 */
public static final String TRUE = "true"; //$NON-NLS-1$
FORMATTER / The wrapping is done using as few lines as possible.
Since:3.0
/** * <pre> * FORMATTER / The wrapping is done using as few lines as possible. * </pre> * @since 3.0 */
public static final int WRAP_COMPACT= 1;
FORMATTER / The wrapping is done putting the first element on a new
            line and then wrapping next elements using as few lines as possible.
Since:3.0
/** * <pre> * FORMATTER / The wrapping is done putting the first element on a new * line and then wrapping next elements using as few lines as possible. * </pre> * @since 3.0 */
public static final int WRAP_COMPACT_FIRST_BREAK= 2;
FORMATTER / The wrapping is done by putting each element on its own line
            except the first element.
Since:3.0
/** * <pre> * FORMATTER / The wrapping is done by putting each element on its own line * except the first element. * </pre> * @since 3.0 */
public static final int WRAP_NEXT_PER_LINE= 5;
FORMATTER / The wrapping is done by putting each element on its own line.
            All elements are indented by one except the first element.
Since:3.0
/** * <pre> * FORMATTER / The wrapping is done by putting each element on its own line. * All elements are indented by one except the first element. * </pre> * @since 3.0 */
public static final int WRAP_NEXT_SHIFTED= 4;
FORMATTER / Value to disable alignment.
Since:3.0
/** * <pre> * FORMATTER / Value to disable alignment. * </pre> * @since 3.0 */
public static final int WRAP_NO_SPLIT= 0;
FORMATTER / The wrapping is done by putting each element on its own line.
Since:3.0
/** * <pre> * FORMATTER / The wrapping is done by putting each element on its own line. * </pre> * @since 3.0 */
public static final int WRAP_ONE_PER_LINE= 3;
Create a new alignment value according to the given values. This must be used to set up the alignment options.
Params:
  • forceSplit – the given force value
  • wrapStyle – the given wrapping style
  • indentStyle – the given indent style
Returns:the new alignment value
/** * Create a new alignment value according to the given values. This must be used to set up * the alignment options. * * @param forceSplit the given force value * @param wrapStyle the given wrapping style * @param indentStyle the given indent style * * @return the new alignment value */
public static String createAlignmentValue(boolean forceSplit, int wrapStyle, int indentStyle) { int alignmentValue = 0; switch(wrapStyle) { case WRAP_COMPACT : alignmentValue |= Alignment.M_COMPACT_SPLIT; break; case WRAP_COMPACT_FIRST_BREAK : alignmentValue |= Alignment.M_COMPACT_FIRST_BREAK_SPLIT; break; case WRAP_NEXT_PER_LINE : alignmentValue |= Alignment.M_NEXT_PER_LINE_SPLIT; break; case WRAP_NEXT_SHIFTED : alignmentValue |= Alignment.M_NEXT_SHIFTED_SPLIT; break; case WRAP_ONE_PER_LINE : alignmentValue |= Alignment.M_ONE_PER_LINE_SPLIT; break; } if (forceSplit) { alignmentValue |= Alignment.M_FORCE; } switch(indentStyle) { case INDENT_BY_ONE : alignmentValue |= Alignment.M_INDENT_BY_ONE; break; case INDENT_ON_COLUMN : alignmentValue |= Alignment.M_INDENT_ON_COLUMN; } return String.valueOf(alignmentValue); }
Returns the formatter settings that most closely approximate the default formatter settings of Eclipse version 2.1.
Returns:the Eclipse 2.1 settings
Since:3.0
/** * Returns the formatter settings that most closely approximate * the default formatter settings of Eclipse version 2.1. * * @return the Eclipse 2.1 settings * @since 3.0 */
public static Map getEclipse21Settings() { DefaultCodeFormatterOptions options = DefaultCodeFormatterOptions.getDefaultSettings(); options.page_width = 80; // changed with bug 356841 options.comment_count_line_length_from_starting_position = false; return options.getMap(); }
Returns the default Eclipse formatter settings
Returns:the Eclipse default settings
Since:3.1
/** * Returns the default Eclipse formatter settings * * @return the Eclipse default settings * @since 3.1 */
public static Map getEclipseDefaultSettings() { return DefaultCodeFormatterOptions.getEclipseDefaultSettings().getMap(); }

Return the force value of the given alignment value. The given alignment value should be created using the createAlignmentValue(boolean, int, int) API.

Params:
  • value – the given alignment value
Throws:
See Also:
Returns:the force value of the given alignment value
/** * <p>Return the force value of the given alignment value. * The given alignment value should be created using the <code>createAlignmentValue(boolean, int, int)</code> * API. * </p> * * @param value the given alignment value * @return the force value of the given alignment value * @see #createAlignmentValue(boolean, int, int) * @exception IllegalArgumentException if the given alignment value is null, or if it * doesn't have a valid format. */
public static boolean getForceWrapping(String value) { try { int existingValue = Integer.parseInt(value); return (existingValue & Alignment.M_FORCE) != 0; } catch (NumberFormatException e) { throw new IllegalArgumentException("Alignment value is not an integer: " + value, e); //$NON-NLS-1$ } }

Return the indentation style of the given alignment value. The given alignment value should be created using the createAlignmentValue(boolean, int, int) API.

Params:
  • value – the given alignment value
Throws:
See Also:
Returns:the indentation style of the given alignment value
/** * <p>Return the indentation style of the given alignment value. * The given alignment value should be created using the <code>createAlignmentValue(boolean, int, int)</code> * API. * </p> * * @param value the given alignment value * @return the indentation style of the given alignment value * @see #createAlignmentValue(boolean, int, int) * @exception IllegalArgumentException if the given alignment value is null, or if it * doesn't have a valid format. */
public static int getIndentStyle(String value) { try { int existingValue = Integer.parseInt(value); if ((existingValue & Alignment.M_INDENT_BY_ONE) != 0) { return INDENT_BY_ONE; } else if ((existingValue & Alignment.M_INDENT_ON_COLUMN) != 0) { return INDENT_ON_COLUMN; } else { return INDENT_DEFAULT; } } catch (NumberFormatException e) { throw new IllegalArgumentException("Alignment value is not an integer: " + value, e); //$NON-NLS-1$ } }
Returns the settings according to the Java conventions.
Returns:the settings according to the Java conventions
Since:3.0
/** * Returns the settings according to the Java conventions. * * @return the settings according to the Java conventions * @since 3.0 */
public static Map getJavaConventionsSettings() { return DefaultCodeFormatterOptions.getJavaConventionsSettings().getMap(); }

Return the wrapping style of the given alignment value. The given alignment value should be created using the createAlignmentValue(boolean, int, int) API.

Params:
  • value – the given alignment value
Throws:
See Also:
Returns:the wrapping style of the given alignment value
/** * <p>Return the wrapping style of the given alignment value. * The given alignment value should be created using the <code>createAlignmentValue(boolean, int, int)</code> * API. * </p> * * @param value the given alignment value * @return the wrapping style of the given alignment value * @see #createAlignmentValue(boolean, int, int) * @exception IllegalArgumentException if the given alignment value is null, or if it * doesn't have a valid format. */
public static int getWrappingStyle(String value) { try { int existingValue = Integer.parseInt(value) & Alignment.SPLIT_MASK; switch(existingValue) { case Alignment.M_COMPACT_SPLIT : return WRAP_COMPACT; case Alignment.M_COMPACT_FIRST_BREAK_SPLIT : return WRAP_COMPACT_FIRST_BREAK; case Alignment.M_NEXT_PER_LINE_SPLIT : return WRAP_NEXT_PER_LINE; case Alignment.M_NEXT_SHIFTED_SPLIT : return WRAP_NEXT_SHIFTED; case Alignment.M_ONE_PER_LINE_SPLIT : return WRAP_ONE_PER_LINE; default: return WRAP_NO_SPLIT; } } catch (NumberFormatException e) { throw new IllegalArgumentException("Alignment value is not an integer: " + value, e); //$NON-NLS-1$ } }

Set the force value of the given alignment value and return the new value. The given alignment value should be created using the createAlignmentValue(boolean, int, int) API.

Params:
  • value – the given alignment value
  • force – the given force value
Throws:
See Also:
Returns:the new alignment value
/** * <p>Set the force value of the given alignment value and return the new value. * The given alignment value should be created using the <code>createAlignmentValue(boolean, int, int)</code> * API. * </p> * * @param value the given alignment value * @param force the given force value * @return the new alignment value * @see #createAlignmentValue(boolean, int, int) * @exception IllegalArgumentException if the given alignment value is null, or if it * doesn't have a valid format. */
public static String setForceWrapping(String value, boolean force) { try { int existingValue = Integer.parseInt(value); // clear existing force bit existingValue &= ~Alignment.M_FORCE; if (force) { existingValue |= Alignment.M_FORCE; } return String.valueOf(existingValue); } catch (NumberFormatException e) { throw new IllegalArgumentException("Alignment value is not an integer: " + value, e); //$NON-NLS-1$ } }

Set the indentation style of the given alignment value and return the new value. The given value should be created using the createAlignmentValue(boolean, int, int) API.

Params:
  • value – the given alignment value
  • indentStyle – the given indentation style
Throws:
  • IllegalArgumentException – if the given alignment value is null, if the given indentation style is not one of the possible indentation styles, or if the given alignment value doesn't have a valid format.
See Also:
Returns:the new alignment value
/** * <p>Set the indentation style of the given alignment value and return the new value. * The given value should be created using the <code>createAlignmentValue(boolean, int, int)</code> * API. * </p> * * @param value the given alignment value * @param indentStyle the given indentation style * @return the new alignment value * @see #INDENT_BY_ONE * @see #INDENT_DEFAULT * @see #INDENT_ON_COLUMN * @see #createAlignmentValue(boolean, int, int) * @exception IllegalArgumentException if the given alignment value is null, if the given * indentation style is not one of the possible indentation styles, or if the given * alignment value doesn't have a valid format. */
public static String setIndentStyle(String value, int indentStyle) { switch(indentStyle) { case INDENT_BY_ONE : case INDENT_DEFAULT : case INDENT_ON_COLUMN : break; default : throw new IllegalArgumentException("Unrecognized indent style: " + indentStyle); //$NON-NLS-1$; } try { int existingValue = Integer.parseInt(value); // clear existing indent bits existingValue &= ~(Alignment.M_INDENT_BY_ONE | Alignment.M_INDENT_ON_COLUMN); switch(indentStyle) { case INDENT_BY_ONE : existingValue |= Alignment.M_INDENT_BY_ONE; break; case INDENT_ON_COLUMN : existingValue |= Alignment.M_INDENT_ON_COLUMN; } return String.valueOf(existingValue); } catch (NumberFormatException e) { throw new IllegalArgumentException("Alignment value is not an integer: " + value, e); //$NON-NLS-1$ } }

Set the wrapping style of the given alignment value and return the new value. The given value should be created using the createAlignmentValue(boolean, int, int) API.

Params:
  • value – the given alignment value
  • wrappingStyle – the given wrapping style
Throws:
  • IllegalArgumentException – if the given alignment value is null, if the given wrapping style is not one of the possible wrapping styles, or if the given alignment value doesn't have a valid format.
See Also:
Returns:the new alignment value
/** * <p>Set the wrapping style of the given alignment value and return the new value. * The given value should be created using the <code>createAlignmentValue(boolean, int, int)</code> * API. * </p> * * @param value the given alignment value * @param wrappingStyle the given wrapping style * @return the new alignment value * @see #WRAP_COMPACT * @see #WRAP_COMPACT_FIRST_BREAK * @see #WRAP_NEXT_PER_LINE * @see #WRAP_NEXT_SHIFTED * @see #WRAP_NO_SPLIT * @see #WRAP_ONE_PER_LINE * @see #createAlignmentValue(boolean, int, int) * @exception IllegalArgumentException if the given alignment value is null, if the given * wrapping style is not one of the possible wrapping styles, or if the given * alignment value doesn't have a valid format. */
public static String setWrappingStyle(String value, int wrappingStyle) { switch(wrappingStyle) { case WRAP_COMPACT : case WRAP_COMPACT_FIRST_BREAK : case WRAP_NEXT_PER_LINE : case WRAP_NEXT_SHIFTED : case WRAP_NO_SPLIT : case WRAP_ONE_PER_LINE : break; default: throw new IllegalArgumentException("Unrecognized wrapping style: " + value); //$NON-NLS-1$ } try { int existingValue = Integer.parseInt(value); // clear existing split bits existingValue &= ~(Alignment.SPLIT_MASK); switch(wrappingStyle) { case WRAP_COMPACT : existingValue |= Alignment.M_COMPACT_SPLIT; break; case WRAP_COMPACT_FIRST_BREAK : existingValue |= Alignment.M_COMPACT_FIRST_BREAK_SPLIT; break; case WRAP_NEXT_PER_LINE : existingValue |= Alignment.M_NEXT_PER_LINE_SPLIT; break; case WRAP_NEXT_SHIFTED : existingValue |= Alignment.M_NEXT_SHIFTED_SPLIT; break; case WRAP_ONE_PER_LINE : existingValue |= Alignment.M_ONE_PER_LINE_SPLIT; break; } return String.valueOf(existingValue); } catch (NumberFormatException e) { throw new IllegalArgumentException("Alignment value is not an integer: " + value, e); //$NON-NLS-1$ } } }