de.hunsicker.jalopy.storage
Class ConventionKeys

java.lang.Object
  |
  +--de.hunsicker.jalopy.storage.ConventionKeys

public final class ConventionKeys
extends java.lang.Object

Provides the valid keys for accessing the values in a code convention.

Use this class in conjunction with ConventionDefaults to access the convention settings:

 Convention settings = Convention.getInstance();
 int numThreads = settings.getInt(ConventionKeys.THREAD_COUNT,
                                  ConventionDefaults.THREAD_COUNT));
 

Version:
$Revision: 1.3.2.10 $
Author:
Marco Hunsicker
See Also:
Convention, ConventionDefaults

Field Summary
static Convention.Key ALIGN_METHOD_CALL_CHAINS
          Force alignment of indiviual method call chains? (boolean)
static Convention.Key ALIGN_PARAMS_METHOD_DEF
          Specifies whether method declaration parameters should be aligned (boolean).
static Convention.Key ALIGN_TERNARY_EXPRESSION
          Force wrapping after the first ternary operand? (boolean)
static Convention.Key ALIGN_TERNARY_OPERATOR
          Align the indiviual parts of the ternary operator? (boolean)
static Convention.Key ALIGN_TERNARY_VALUES
          Force wrapping after the second ternary operand? (boolean)
static Convention.Key ALIGN_VAR_ASSIGNS
          Specifies whether variable assignments should be aligned (boolean).
static Convention.Key ALIGN_VAR_IDENTS
          Specifies whether variable identifiers should be aligned (boolean).
static Convention.Key ANON_ALIGN_VALUES_WHEN_EXCEEDS
          Force alignment of wrapping ANON values after a certain amount ? (int)
static Convention.Key ANON_DEF_ALIGN_VALUES_WHEN_EXCEEDS
          Force alignment of wrapping ANON DEF values after a certain amount ? (int)
static Convention.Key ANON_DEF_LCURLY_NO_NEW_LINE
          Annotation Def LCURLY statrts new line ? (boolean)
static Convention.Key ANON_LCURLY_NO_NEW_LINE
          Annotation LCURLY statrts new line ? (boolean)
static Convention.Key ARRAY_BRACKETS_AFTER_IDENT
          Should the brackets for array types be printed after the type or after the identifier? (boolean)
static Convention.Key BACKUP_DIRECTORY
          The directory where backup files are to be stored (String).
static Convention.Key BACKUP_LEVEL
          Number of backup files to hold (int).
static Convention.Key BLANK_LINES_AFTER_BLOCK
          Number of blank lines after a block (int).
static Convention.Key BLANK_LINES_AFTER_BRACE_LEFT
          Force the given number of blank lines after left curly braces (int).
static Convention.Key BLANK_LINES_AFTER_CLASS
          Number of blank lines after classes (int).
static Convention.Key BLANK_LINES_AFTER_DECLARATION
          Number of blank lines after declarations (int).
static Convention.Key BLANK_LINES_AFTER_FOOTER
          Number of blank lines after the footer (int).
static Convention.Key BLANK_LINES_AFTER_HEADER
          Number of blank lines after the header (int).
static Convention.Key BLANK_LINES_AFTER_IMPORT
          Number of blank lines after the last import statement (int).
static Convention.Key BLANK_LINES_AFTER_INTERFACE
          Number of blank lines after interfaces (int).
static Convention.Key BLANK_LINES_AFTER_METHOD
          Number of blank lines after methods (int).
static Convention.Key BLANK_LINES_AFTER_PACKAGE
          Number of blank lines after the package statement (int).
static Convention.Key BLANK_LINES_BEFORE_BLOCK
          Number of blank lines before a block (int).
static Convention.Key BLANK_LINES_BEFORE_BRACE_RIGHT
          Force the given number of blank lines before right curly braces (int).
static Convention.Key BLANK_LINES_BEFORE_CASE_BLOCK
          Number of blank lines before a case block (int).
static Convention.Key BLANK_LINES_BEFORE_COMMENT_JAVADOC
          Number of blank lines before Javadoc comments (int).
static Convention.Key BLANK_LINES_BEFORE_COMMENT_MULTI_LINE
          Number of blank lines before multi-line comments (int).
static Convention.Key BLANK_LINES_BEFORE_COMMENT_SINGLE_LINE
          Number of blank lines before single-line commenents (int).
static Convention.Key BLANK_LINES_BEFORE_CONTROL
          Number of blank lines before a flow control statement (int).
static Convention.Key BLANK_LINES_BEFORE_DECLARATION
          Number of blank lines before declarations (int).
static Convention.Key BLANK_LINES_BEFORE_FOOTER
          Number of blank lines before the footer (int).
static Convention.Key BLANK_LINES_BEFORE_HEADER
          Number of blank lines before the header (int).
static Convention.Key BLANK_LINES_KEEP_UP_TO
          Number of blank lines to keep up to (int).
static Convention.Key BRACE_ADD_COMMENT
          Add comments like end if and end switch after brace blocks
static Convention.Key BRACE_EMPTY_CUDDLE
          Cuddle empty braces? (boolean)
static Convention.Key BRACE_EMPTY_INSERT_STATEMENT
          Insert an empty statement into empty braces? (boolean)
static Convention.Key BRACE_INSERT_DO_WHILE
          Insert braces around single do-while statements? (boolean)
static Convention.Key BRACE_INSERT_FOR
          Insert unneccessary braces around single for statements? (boolean)
static Convention.Key BRACE_INSERT_IF_ELSE
          Insert braces around single if-else statements? (boolean)
static Convention.Key BRACE_INSERT_WHILE
          Insert braces around single while statements? (boolean)
static Convention.Key BRACE_NEWLINE_LEFT
          Print newline before left braces? (boolean)
static Convention.Key BRACE_NEWLINE_RIGHT
          Print newline after right braces? (boolean)
static Convention.Key BRACE_REMOVE_BLOCK
          Remove unneccessary braces for blocks? (boolean)
static Convention.Key BRACE_REMOVE_DO_WHILE
          Remove braces around single do-while statements? (boolean)
static Convention.Key BRACE_REMOVE_FOR
          Remove unneccessary braces around single for statements? (boolean)
static Convention.Key BRACE_REMOVE_IF_ELSE
          Remove unneccessary braces around single if-else statements? (boolean)
static Convention.Key BRACE_REMOVE_WHILE
          Remove braces around single while statements? (boolean)
static Convention.Key BRACE_TREAT_DIFFERENT
          Should class and method blocks be treated different? (boolean)
static Convention.Key BRACE_TREAT_DIFFERENT_IF_WRAPPED
          Print left braces of class/interface/ctor/method declarations on a new line if either the parameter list or extends, implements or throws clause is wrapped? (boolean)
static Convention.Key CHUNKS_BY_BLANK_LINES
          Enable chunk detection by blank lines? (boolean)
static Convention.Key CHUNKS_BY_COMMENTS
          Enable chunk detection by comments? (boolean)
static Convention.Key CLASS_REPOSITORY_DIRECTORY
          Directory to store class repository files (String).
static Convention.Key COMMENT_FORMAT_MULTI_LINE
          Format multi-line comments? (boolean)
static Convention.Key COMMENT_INSERT_SEPARATOR
          Insert separator comments between the different tree portions ( class/interface/variable/method/constructor/initialiation declarations)? (boolean)
static Convention.Key COMMENT_INSERT_SEPARATOR_RECURSIVE
          Insert separator comments between the different tree portions of inner classes/interfaces (a.k.a recursively)? (boolean)
static Convention.Key COMMENT_JAVADOC_CHECK_TAGS
          Check Javadoc standard tags? (boolean)
static Convention.Key COMMENT_JAVADOC_CHECK_TAGS_THROWS
          Should Javadoc &064;throws tags be checked or not? (boolean)
static Convention.Key COMMENT_JAVADOC_CLASS_MASK
          Insert missing Javadoc comment for classes/interfaces? (int)
static Convention.Key COMMENT_JAVADOC_CTOR_MASK
          Insert missing Javadoc comment for constructors? (int)
static Convention.Key COMMENT_JAVADOC_FIELDS_SHORT
          Print Javadoc comments for fields in one line if possible? (boolean)
static Convention.Key COMMENT_JAVADOC_INNER_CLASS
          Insert missing Javadoc comments for inner classes too? (boolean)
static Convention.Key COMMENT_JAVADOC_METHOD_MASK
          Insert missing Javadoc comment for methods? (int)
static Convention.Key COMMENT_JAVADOC_PARSE
          Parse Javadoc comments or add AS IS? (boolean)
static Convention.Key COMMENT_JAVADOC_REMOVE
          Remove Javadoc comments? (boolean)
static Convention.Key COMMENT_JAVADOC_TAGS_INLINE
          Custom Javadoc in-line tags definitions (String).
static Convention.Key COMMENT_JAVADOC_TAGS_STANDARD
          Custom Javadoc standard tags definitions (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_CLASS
          Javadoc template for classes (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_CTOR_BOTTOM
          Javadoc template for constructors, bottom part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_CTOR_EXCEPTION
          Javadoc template for constructors, exceptions part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_CTOR_PARAM
          Javadoc template for constructors, parameters part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_CTOR_TOP
          Javadoc template for constructors, top part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_INTERFACE
          Javadoc template for interfaces (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_BOTTOM
          Javadoc template for methods, bottom part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_EXCEPTION
          Javadoc template for methods, exceptions part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_PARAM
          Javadoc template for methods, parameter part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_RETURN
          Javadoc template for methods, return part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_TOP
          Javadoc template for methods, top part (String).
static Convention.Key COMMENT_JAVADOC_TEMPLATE_VARIABLE
          Javadoc template for variables (String).
static Convention.Key COMMENT_JAVADOC_TRANSFORM
          Transform non-Javadoc comments to Javadoc comments? (boolean)
static Convention.Key COMMENT_JAVADOC_VARIABLE_MASK
          Insert missing Javadoc comment for variables? (int)
static Convention.Key COMMENT_REMOVE_MULTI_LINE
          Remove multi-line comments? (boolean)
static Convention.Key COMMENT_REMOVE_SINGLE_LINE
          Remove single-line comments? (boolean)
static Convention.Key CONVENTION_DESCRIPTION
          Description of the code convention (String).
static Convention.Key CONVENTION_NAME
          Name of the code convention (String).
static Convention.Key COUNTRY
          Uppercase two-letter ISO-3166 code (String).
static Convention.Key DONT_COMMENT_JAVADOC_WHEN_ML
          Dont insert missing Javadoc comments if multiline comment exists (boolean)
static Convention.Key ENUM_ALIGN_VALUES_WHEN_EXCEEDS
          Force alignment of wrapping ENUM values after a certain amount ? (int)
static Convention.Key ENUM_LCURLY_NO_NEW_LINE
          Enumeration LCURLY statrts new line ? (boolean)
static Convention.Key ENVIRONMENT
          String encoded environment variables (String).
static Convention.Key FOOTER
          Insert a footer? (boolean)
static Convention.Key FOOTER_KEYS
          Identify keys of the footers that are to be deleted (String).
static Convention.Key FOOTER_SMART_MODE_LINES
          Number of comments after the last node (a closing curly brace) that should be treated as footer comments (int).
static Convention.Key FOOTER_TEXT
          The footer text (String).
static Convention.Key FORCE_FORMATTING
          Should the processing of a source file be forced although the file hasn't changed? (boolean)
static Convention.Key HEADER
          Insert a header? (boolean)
static Convention.Key HEADER_KEYS
          Identify keys of the headers that are to be deleted (String).
static Convention.Key HEADER_SMART_MODE_LINES
          Number of comments before the first node (an opening curly brace) that should be treated as header comments (int).
static Convention.Key HEADER_TEXT
          The header text (String).
static Convention.Key HISTORY_METHOD
          The method used to identify changed files.
static Convention.Key HISTORY_POLICY
          The history policy to use (String).
static Convention.Key IMPORT_GROUPING
          Holds grouping info for distinct package names (String).
static Convention.Key IMPORT_GROUPING_DEPTH
          Default import grouping depth (int).
static Convention.Key IMPORT_POLICY
          Specifies the import optimization policy (String).
static Convention.Key IMPORT_SORT
          Sort import statements? (boolean)
static Convention.Key INDENT_CASE_FROM_SWITCH
          Indent case block in switch statements? (boolean)
static Convention.Key INDENT_CONTINUATION_BLOCK
          Should continuation indentation be used for statement blocks? (boolean).
static Convention.Key INDENT_CONTINUATION_OPERATOR
          Should continuation indentation be used for operators? (boolean).
static Convention.Key INDENT_DEEP
          Should standard indentation be used to indent wrapped lines, or rather the deep indentation policy? (boolean).
static Convention.Key INDENT_FIRST_COLUMN_COMMENT
          Indent first column comments? (boolean)
static Convention.Key INDENT_LABEL
          Indent labels? (boolean)
static Convention.Key INDENT_SIZE
          Amount of space to use for indentation (int).
static Convention.Key INDENT_SIZE_BRACE_CUDDLED
          Indentation before cuddled braces (int).
static Convention.Key INDENT_SIZE_BRACE_LEFT
          Indentation before a left curly brace (int).
static Convention.Key INDENT_SIZE_BRACE_RIGHT
          Indentation before a right curly brace (int).
static Convention.Key INDENT_SIZE_BRACE_RIGHT_AFTER
          Indentation after a right curly brace (int).
static Convention.Key INDENT_SIZE_COMMENT_ENDLINE
          Indentation before an endline comment (int).
static Convention.Key INDENT_SIZE_CONTINUATION
          Continuation indent size (int).
static Convention.Key INDENT_SIZE_DEEP
          Maximal amount of spaces for wrapping should be forced (int).
static Convention.Key INDENT_SIZE_EXTENDS
          Indentation for extends types (int).
static Convention.Key INDENT_SIZE_IMPLEMENTS
          Indentation for implements types (int).
static Convention.Key INDENT_SIZE_LEADING
          Indentation before every line (int).
static Convention.Key INDENT_SIZE_TABS
          Number of spaces to assume for tabs (int).
static Convention.Key INDENT_SIZE_THROWS
          Indentation for throws types (int).
static Convention.Key INDENT_WITH_TABS
          Fill gaps with tabs? (boolean)
static Convention.Key INDENT_WITH_TABS_ONLY_LEADING
          Use spaces for continuation after tabs? (boolean)
static Convention.Key INSERT_EXPRESSION_PARENTHESIS
          Insert parenthesis around expressions to make precedence clear? (boolean)
static Convention.Key INSERT_FINAL_MODIFIER_FOR_PARAMETERS
          Should the "final" modifier be added for method parameters? (boolean)
static Convention.Key INSERT_LOGGING_CONDITIONAL
          Insert conditional expresssion for debug logging calls? (boolean)
static Convention.Key INSERT_SERIAL_UID
          Insert serial version UID for serializable classes? (boolean)
static Convention.Key INSERT_TRAILING_NEWLINE
          Print a newline after the last curly brace? (boolean)
static Convention.Key INSPECTOR
          Enable the code inspector? (boolean)
static Convention.Key INTERNAL_VERSION
          The version number of the current code convention.
static Convention.Key LANGUAGE
          Lowercase two-letter ISO-639 code (String).
static Convention.Key LINE_LENGTH
          Number of characters in each line(int).
static Convention.Key LINE_WRAP
          Use line wrapping? (boolean)
static Convention.Key LINE_WRAP_AFTER_ASSIGN
          Prefer wrapping after assignments? (boolean)
static Convention.Key LINE_WRAP_AFTER_CHAINED_METHOD_CALL
          Force wrapping/alignment of chained method? (boolean)
static Convention.Key LINE_WRAP_AFTER_LABEL
          Print newline after labels? (boolean)
static Convention.Key LINE_WRAP_AFTER_LEFT_PAREN
          Prefer line wrapping after the left parentheses of parameter/expression lists? (boolean)
static Convention.Key LINE_WRAP_AFTER_PARAMS_METHOD_CALL
          Force wrapping/alignment after parameters for method calls? (boolean)
static Convention.Key LINE_WRAP_AFTER_PARAMS_METHOD_CALL_IF_NESTED
          Force wrapping/alignment after parameters for method calls if they contain at least one other method call? (boolean)
static Convention.Key LINE_WRAP_AFTER_PARAMS_METHOD_DEF
          Force wrapping/alignment of parameters for method/constructor declarations? (boolean)
static Convention.Key LINE_WRAP_AFTER_TYPES_EXTENDS
          Force alignment of extends types for class/interface declarations? (boolean)
static Convention.Key LINE_WRAP_AFTER_TYPES_EXTENDS_EXCEED
          Force alignment of extends types for class/interface declarations? (boolean)
static Convention.Key LINE_WRAP_AFTER_TYPES_IMPLEMENTS
          Force alignment of implements types for class/interface declarations? (boolean)
static Convention.Key LINE_WRAP_AFTER_TYPES_IMPLEMENTS_EXCEED
          Force alignment of implements types for class/interface declarations? (boolean)
static Convention.Key LINE_WRAP_AFTER_TYPES_THROWS
          Force wrapping/alignment of exception types for method/ctor declarations? (boolean)
static Convention.Key LINE_WRAP_AFTER_TYPES_THROWS_EXCEED
          Force alignment of throws types for method/ctor declarations? (boolean)
static Convention.Key LINE_WRAP_ARRAY_ELEMENTS
          Force wrapping/alignment after given number of array elements (int).
static Convention.Key LINE_WRAP_BEFORE_EXTENDS
          Force line wrapping before extends? (boolean)
static Convention.Key LINE_WRAP_BEFORE_IMPLEMENTS
          Force line wrapping before implements? (boolean)
static Convention.Key LINE_WRAP_BEFORE_OPERATOR
          Should line wrapping be performed before or after operators? (boolean)
static Convention.Key LINE_WRAP_BEFORE_RIGHT_PAREN
          Insert a newline before the right parentheses of parameter/epxression lists? (boolean)
static Convention.Key LINE_WRAP_BEFORE_THROWS
          Force line wrapping before throws? (boolean)
static Convention.Key LINE_WRAP_PARAMS_DEEP
          When wrapping parameters always do it deeply (boolean)
static Convention.Key LINE_WRAP_PARAMS_EXCEED
          Force wrapping/alignment of successive parameters/expression if the first parameter/expression was wrapped ? (boolean)
static Convention.Key LINE_WRAP_PARAMS_HARD
          If it is better to wrap the parameters deeply then do so (boolean)
static Convention.Key LINE_WRAP_PAREN_GROUPING
          Wrap and indent expressions in grouping parentheses ? (boolean)
static Convention.Key MSG_PRIORITY_IO
          Level of the Loggers.IO (int).
static Convention.Key MSG_PRIORITY_PARSER
          Level of the Loggers.PARSER (int).
static Convention.Key MSG_PRIORITY_PARSER_JAVADOC
          Level of the Loggers.PARSER_JAVADOC (int).
static Convention.Key MSG_PRIORITY_PRINTER
          Level of the Loggers.PRINTER (int).
static Convention.Key MSG_PRIORITY_PRINTER_JAVADOC
          Level of the Loggers.PRINTER_JAVADOC (int).
static Convention.Key MSG_PRIORITY_TRANSFORM
          Level of the Loggers.TRANSFORM (int).
static Convention.Key MSG_SHOW_ERROR_STACKTRACE
          Display stacktrace for errors? (boolean)
static Convention.Key PADDING_ASSIGNMENT_OPERATORS
          Pad assignment operators? (boolean)
static Convention.Key PADDING_BITWISE_OPERATORS
          Pad bitwise operators? (boolean)
static Convention.Key PADDING_BRACES
          Insert spaces after the left, and before the right curly brace for array initializations? (boolean)
static Convention.Key PADDING_BRACKETS
          Insert spaces after the left, and before the right bracket? (boolean)
static Convention.Key PADDING_CAST
          Insert spaces after the left, and before the right type cast parenthesis? (boolean)
static Convention.Key PADDING_LOGICAL_OPERATORS
          Pad logical operators? (boolean)
static Convention.Key PADDING_MATH_OPERATORS
          Pad mathematical operators? (boolean)
static Convention.Key PADDING_PAREN
          Insert spaces after the left, and before the right parenthesis? (boolean)
static Convention.Key PADDING_RELATIONAL_OPERATORS
          Pad relational operators? (boolean)
static Convention.Key PADDING_SHIFT_OPERATORS
          Pad shift operators? (boolean)
static Convention.Key REGEXP_CLASS
          Regexp for class names (String).
static Convention.Key REGEXP_CLASS_ABSTRACT
          Regexp for abstract class names (String).
static Convention.Key REGEXP_FIELD_DEFAULT
          Regexp for package protected (default access) fields (String).
static Convention.Key REGEXP_FIELD_DEFAULT_STATIC
          Regexp for package protected (default access) static fields (String).
static Convention.Key REGEXP_FIELD_DEFAULT_STATIC_FINAL
          Regexp for package protected (default access) static final fields (String).
static Convention.Key REGEXP_FIELD_PRIVATE
          Regexp for private fields (String).
static Convention.Key REGEXP_FIELD_PRIVATE_STATIC
          Regexp for private static fields (String).
static Convention.Key REGEXP_FIELD_PRIVATE_STATIC_FINAL
          Regexp for private static final fields (String).
static Convention.Key REGEXP_FIELD_PROTECTED
          Regexp for protected fields (String).
static Convention.Key REGEXP_FIELD_PROTECTED_STATIC
          Regexp for protected static (String).
static Convention.Key REGEXP_FIELD_PROTECTED_STATIC_FINAL
          Regexp for protected static final fields (String).
static Convention.Key REGEXP_FIELD_PUBLIC
          Regexp for public fields (String).
static Convention.Key REGEXP_FIELD_PUBLIC_STATIC
          Regexp for public static fields (String).
static Convention.Key REGEXP_FIELD_PUBLIC_STATIC_FINAL
          Regexp for public static final fields (String).
static Convention.Key REGEXP_INTERFACE
          Regexp for interface names (String).
static Convention.Key REGEXP_LABEL
          Regexp for labels (String).
static Convention.Key REGEXP_LOCAL_VARIABLE
          Regexp for local variables names (String).
static Convention.Key REGEXP_METHOD_DEFAULT
          Regexp for package protected (default access) methods (String).
static Convention.Key REGEXP_METHOD_DEFAULT_STATIC
          Regexp for package protected (default access) static methods (String).
static Convention.Key REGEXP_METHOD_DEFAULT_STATIC_FINAL
          Regexp for package protected (default access) static final methods (String).
static Convention.Key REGEXP_METHOD_PRIVATE
          Regexp for private methods (String).
static Convention.Key REGEXP_METHOD_PRIVATE_STATIC
          Regexp for private static methods (String).
static Convention.Key REGEXP_METHOD_PRIVATE_STATIC_FINAL
          Regexp for private static final methods (String).
static Convention.Key REGEXP_METHOD_PROTECTED
          Regexp for protected methods (String).
static Convention.Key REGEXP_METHOD_PROTECTED_STATIC
          Regexp for protected static (String).
static Convention.Key REGEXP_METHOD_PROTECTED_STATIC_FINAL
          Regexp for protected static final methods (String).
static Convention.Key REGEXP_METHOD_PUBLIC
          Regexp for public methods (String).
static Convention.Key REGEXP_METHOD_PUBLIC_STATIC
          Regexp for public static methods (String).
static Convention.Key REGEXP_METHOD_PUBLIC_STATIC_FINAL
          Regexp for public static final methods (String).
static Convention.Key REGEXP_PACKAGE
          Regexp for package names (String).
static Convention.Key REGEXP_PARAM
          Regexp for method/ctor parameter names (String).
static Convention.Key REGEXP_PARAM_FINAL
          Regexp for final method/ctor parameter names (String).
static Convention.Key SEPARATOR_ANNOTATION_INIT
          Separator text for the annotation section (String).
static Convention.Key SEPARATOR_CLASS
          Separator text for the inner classes section (String).
static Convention.Key SEPARATOR_CTOR
          Separator text for the constructors section (String).
static Convention.Key SEPARATOR_ENUM_CONSTANT_INIT
          Separator text for the enumeration constant section (String).
static Convention.Key SEPARATOR_ENUM_INIT
          Separator text for the enumeration section (String).
static Convention.Key SEPARATOR_FILL_CHARACTER
          The fill character to use for the separator comments (String).
static Convention.Key SEPARATOR_INSTANCE_INIT
          Separator text for the instance initializers section (String).
static Convention.Key SEPARATOR_INSTANCE_VAR
          Separator text for the instance variables section (String).
static Convention.Key SEPARATOR_INTERFACE
          Separator text for the interfaces section (String).
static Convention.Key SEPARATOR_METHOD
          Separator text for the methods section (String).
static Convention.Key SEPARATOR_STATIC_VAR_INIT
          Separator text for the static variables and initalizers section (String).
static Convention.Key SORT
          Sort the different elements of a Java source file? (boolean)
static Convention.Key SORT_ANNOTATION
          Sort annotation declarations? (boolean)
static Convention.Key SORT_CLASS
          Sort classes declarations? (boolean)
static Convention.Key SORT_CTOR
          Sort constructors declarations? (boolean)
static Convention.Key SORT_ENUM
          Sort enum declarations? (boolean)
static Convention.Key SORT_INTERFACE
          Sort interfaces declarations? (boolean)
static Convention.Key SORT_METHOD
          Sort methods declarations? (boolean)
static Convention.Key SORT_METHOD_BEAN
          Sort method bean declarations? (boolean)
static Convention.Key SORT_MODIFIERS
          Sort modifers? (boolean)
static Convention.Key SORT_ORDER
          String indicating the declaration sort order (String).
static Convention.Key SORT_ORDER_MODIFIERS
          String indicating the modifiers sort order (String).
static Convention.Key SORT_VARIABLE
          Sort variable declarations? (boolean)
static Convention.Key SOURCE_VERSION
          JDK source compatibility version (String).
static Convention.Key SPACE_AFTER_CAST
          Print a space after type casting? (boolean)
static Convention.Key SPACE_AFTER_COMMA
          Print a space after a comma? (boolean)
static Convention.Key SPACE_AFTER_SEMICOLON
          Print a space after a semicolon? (boolean)
static Convention.Key SPACE_BEFORE_BRACES
          Print a space before braces (of arrays)? (boolean)
static Convention.Key SPACE_BEFORE_BRACKETS
          Print a space before brackets? (boolean)
static Convention.Key SPACE_BEFORE_BRACKETS_TYPES
          Print a space before types with brackets (int).
static