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 Convention.Key SPACE_BEFORE_CASE_COLON
          Print a space before the colon of a case block? (boolean)
static Convention.Key SPACE_BEFORE_LOGICAL_NOT
          Print a space before the negation of boolean expressions? (boolean)
static Convention.Key SPACE_BEFORE_METHOD_CALL_PAREN
          Print a space before method call parenthesis? (boolean)
static Convention.Key SPACE_BEFORE_METHOD_DEF_PAREN
          Print a space before method definition parenthesis? (boolean)
static Convention.Key SPACE_BEFORE_STATEMENT_PAREN
          Print a space before java statement parenthesis? (boolean)
static Convention.Key STRIP_QUALIFICATION
          Strip qualification for identifiers? (boolean)
static Convention.Key STYLE_LOCATION
          The location where to load the code convention from (String).
static Convention.Key THREAD_COUNT
          Number of processing threads to use (int).
static Convention.Key TIP_ADHERE_TO_NAMING_CONVENTION
          Perform this code inspection? (boolean)
static Convention.Key TIP_AVOID_THREAD_GROUPS
          Perform this code inspection? (boolean)
static Convention.Key TIP_DECLARE_COLLECTION_COMMENT
          Perform this code inspection? (boolean)
static Convention.Key TIP_DECLARE_COLLECTION_VARIABLE_COMMENT
          Perform this code inspection? (boolean)
static Convention.Key TIP_DONT_IGNORE_EXCEPTION
          Perform this code inspection? (boolean)
static Convention.Key TIP_DONT_SUBSTITUTE_OBJECT_EQUALS
          Perform this code inspection? (boolean)
static Convention.Key TIP_EMPTY_FINALLY
          Perform this code inspection? (boolean)
static Convention.Key TIP_INTERFACE_ONLY_FOR_TYPE
          Perform this code inspection? (boolean)
static Convention.Key TIP_NEVER_THROW_EXCEPTION
          Perform this code inspection? (boolean)
static Convention.Key TIP_NEVER_THROW_THROWABLE
          Perform this code inspection? (boolean)
static Convention.Key TIP_NEVER_WAIT_OUTSIDE_LOOP
          Perform this code inspection? (boolean)
static Convention.Key TIP_OBEY_CONTRACT_EQUALS
          Perform this code inspection? (boolean)
static Convention.Key TIP_OVERRIDE_EQUALS
          Perform this code inspection? (boolean)
static Convention.Key TIP_OVERRIDE_HASHCODE
          Perform this code inspection? (boolean)
static Convention.Key TIP_OVERRIDE_TO_STRING
          Perform this code inspection? (boolean)
static Convention.Key TIP_REFER_BY_INTERFACE
          Perform this code inspection? (boolean)
static Convention.Key TIP_REPLACE_STRUCTURE_WITH_CLASS
          Perform this code inspection? (boolean)
static Convention.Key TIP_RETURN_ZERO_ARRAY
          Perform this code inspection? (boolean)
static Convention.Key TIP_STRING_LITERAL_I18N
          Perform this code inspection? (boolean)
static Convention.Key TIP_VARIABLE_SHADOW
          Perform this code inspection? (boolean)
static Convention.Key TIP_WRONG_COLLECTION_COMMENT
          Perform this code inspection (boolean)
 
Method Summary
static boolean isValid(Convention.Key key)
          Determines whether the given key is valid.
static void main(java.lang.String[] args)
          Called to dump the keys
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SOURCE_VERSION

public static final Convention.Key SOURCE_VERSION
JDK source compatibility version (String). TODO

Since:
1.0b8

COUNTRY

public static final Convention.Key COUNTRY
Uppercase two-letter ISO-3166 code (String).

Since:
1.0b9

LANGUAGE

public static final Convention.Key LANGUAGE
Lowercase two-letter ISO-639 code (String).

Since:
1.0b9

CONVENTION_DESCRIPTION

public static final Convention.Key CONVENTION_DESCRIPTION
Description of the code convention (String).


CONVENTION_NAME

public static final Convention.Key CONVENTION_NAME
Name of the code convention (String).


STYLE_LOCATION

public static final Convention.Key STYLE_LOCATION
The location where to load the code convention from (String).


INSPECTOR

public static final Convention.Key INSPECTOR
Enable the code inspector? (boolean)


REGEXP_PACKAGE

public static final Convention.Key REGEXP_PACKAGE
Regexp for package names (String).

Since:
1.0b8

REGEXP_CLASS

public static final Convention.Key REGEXP_CLASS
Regexp for class names (String).

Since:
1.0b8

REGEXP_CLASS_ABSTRACT

public static final Convention.Key REGEXP_CLASS_ABSTRACT
Regexp for abstract class names (String).

Since:
1.0b8

REGEXP_INTERFACE

public static final Convention.Key REGEXP_INTERFACE
Regexp for interface names (String).

Since:
1.0b8

REGEXP_LOCAL_VARIABLE

public static final Convention.Key REGEXP_LOCAL_VARIABLE
Regexp for local variables names (String).

Since:
1.0b8

REGEXP_PARAM

public static final Convention.Key REGEXP_PARAM
Regexp for method/ctor parameter names (String).

Since:
1.0b8

REGEXP_PARAM_FINAL

public static final Convention.Key REGEXP_PARAM_FINAL
Regexp for final method/ctor parameter names (String).

Since:
1.0b8

REGEXP_LABEL

public static final Convention.Key REGEXP_LABEL
Regexp for labels (String).

Since:
1.0b8

REGEXP_FIELD_PUBLIC

public static final Convention.Key REGEXP_FIELD_PUBLIC
Regexp for public fields (String).

Since:
1.0b8

REGEXP_FIELD_PROTECTED

public static final Convention.Key REGEXP_FIELD_PROTECTED
Regexp for protected fields (String).

Since:
1.0b8

REGEXP_FIELD_DEFAULT

public static final Convention.Key REGEXP_FIELD_DEFAULT
Regexp for package protected (default access) fields (String).

Since:
1.0b8

REGEXP_FIELD_PRIVATE

public static final Convention.Key REGEXP_FIELD_PRIVATE
Regexp for private fields (String).

Since:
1.0b8

REGEXP_FIELD_PUBLIC_STATIC

public static final Convention.Key REGEXP_FIELD_PUBLIC_STATIC
Regexp for public static fields (String).

Since:
1.0b8

REGEXP_FIELD_PROTECTED_STATIC

public static final Convention.Key REGEXP_FIELD_PROTECTED_STATIC
Regexp for protected static (String).

Since:
1.0b8

REGEXP_FIELD_DEFAULT_STATIC

public static final Convention.Key REGEXP_FIELD_DEFAULT_STATIC
Regexp for package protected (default access) static fields (String).

Since:
1.0b8

REGEXP_FIELD_PRIVATE_STATIC

public static final Convention.Key REGEXP_FIELD_PRIVATE_STATIC
Regexp for private static fields (String).

Since:
1.0b8

REGEXP_FIELD_PUBLIC_STATIC_FINAL

public static final Convention.Key REGEXP_FIELD_PUBLIC_STATIC_FINAL
Regexp for public static final fields (String).

Since:
1.0b8

REGEXP_FIELD_PROTECTED_STATIC_FINAL

public static final Convention.Key REGEXP_FIELD_PROTECTED_STATIC_FINAL
Regexp for protected static final fields (String).

Since:
1.0b8

REGEXP_FIELD_DEFAULT_STATIC_FINAL

public static final Convention.Key REGEXP_FIELD_DEFAULT_STATIC_FINAL
Regexp for package protected (default access) static final fields (String).

Since:
1.0b8

REGEXP_FIELD_PRIVATE_STATIC_FINAL

public static final Convention.Key REGEXP_FIELD_PRIVATE_STATIC_FINAL
Regexp for private static final fields (String).

Since:
1.0b8

REGEXP_METHOD_PUBLIC

public static final Convention.Key REGEXP_METHOD_PUBLIC
Regexp for public methods (String).

Since:
1.0b9

REGEXP_METHOD_PROTECTED

public static final Convention.Key REGEXP_METHOD_PROTECTED
Regexp for protected methods (String).

Since:
1.0b9

REGEXP_METHOD_DEFAULT

public static final Convention.Key REGEXP_METHOD_DEFAULT
Regexp for package protected (default access) methods (String).

Since:
1.0b9

REGEXP_METHOD_PRIVATE

public static final Convention.Key REGEXP_METHOD_PRIVATE
Regexp for private methods (String).

Since:
1.0b9

REGEXP_METHOD_PUBLIC_STATIC

public static final Convention.Key REGEXP_METHOD_PUBLIC_STATIC
Regexp for public static methods (String).

Since:
1.0b9

REGEXP_METHOD_PROTECTED_STATIC

public static final Convention.Key REGEXP_METHOD_PROTECTED_STATIC
Regexp for protected static (String).

Since:
1.0b9

REGEXP_METHOD_DEFAULT_STATIC

public static final Convention.Key REGEXP_METHOD_DEFAULT_STATIC
Regexp for package protected (default access) static methods (String).

Since:
1.0b9

REGEXP_METHOD_PRIVATE_STATIC

public static final Convention.Key REGEXP_METHOD_PRIVATE_STATIC
Regexp for private static methods (String).

Since:
1.0b9

REGEXP_METHOD_PUBLIC_STATIC_FINAL

public static final Convention.Key REGEXP_METHOD_PUBLIC_STATIC_FINAL
Regexp for public static final methods (String).

Since:
1.0b9

REGEXP_METHOD_PROTECTED_STATIC_FINAL

public static final Convention.Key REGEXP_METHOD_PROTECTED_STATIC_FINAL
Regexp for protected static final methods (String).

Since:
1.0b9

REGEXP_METHOD_DEFAULT_STATIC_FINAL

public static final Convention.Key REGEXP_METHOD_DEFAULT_STATIC_FINAL
Regexp for package protected (default access) static final methods (String).

Since:
1.0b9

REGEXP_METHOD_PRIVATE_STATIC_FINAL

public static final Convention.Key REGEXP_METHOD_PRIVATE_STATIC_FINAL
Regexp for private static final methods (String).

Since:
1.0b9

TIP_STRING_LITERAL_I18N

public static final Convention.Key TIP_STRING_LITERAL_I18N
Perform this code inspection? (boolean)

Since:
1.0b9

TIP_DONT_SUBSTITUTE_OBJECT_EQUALS

public static final Convention.Key TIP_DONT_SUBSTITUTE_OBJECT_EQUALS
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_OBEY_CONTRACT_EQUALS

public static final Convention.Key TIP_OBEY_CONTRACT_EQUALS
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_OVERRIDE_HASHCODE

public static final Convention.Key TIP_OVERRIDE_HASHCODE
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_OVERRIDE_EQUALS

public static final Convention.Key TIP_OVERRIDE_EQUALS
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_OVERRIDE_TO_STRING

public static final Convention.Key TIP_OVERRIDE_TO_STRING
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_INTERFACE_ONLY_FOR_TYPE

public static final Convention.Key TIP_INTERFACE_ONLY_FOR_TYPE
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_REPLACE_STRUCTURE_WITH_CLASS

public static final Convention.Key TIP_REPLACE_STRUCTURE_WITH_CLASS
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_RETURN_ZERO_ARRAY

public static final Convention.Key TIP_RETURN_ZERO_ARRAY
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_REFER_BY_INTERFACE

public static final Convention.Key TIP_REFER_BY_INTERFACE
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_ADHERE_TO_NAMING_CONVENTION

public static final Convention.Key TIP_ADHERE_TO_NAMING_CONVENTION
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_NEVER_THROW_EXCEPTION

public static final Convention.Key TIP_NEVER_THROW_EXCEPTION
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_NEVER_THROW_THROWABLE

public static final Convention.Key TIP_NEVER_THROW_THROWABLE
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_DONT_IGNORE_EXCEPTION

public static final Convention.Key TIP_DONT_IGNORE_EXCEPTION
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_NEVER_WAIT_OUTSIDE_LOOP

public static final Convention.Key TIP_NEVER_WAIT_OUTSIDE_LOOP
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_AVOID_THREAD_GROUPS

public static final Convention.Key TIP_AVOID_THREAD_GROUPS
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_VARIABLE_SHADOW

public static final Convention.Key TIP_VARIABLE_SHADOW
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_DECLARE_COLLECTION_VARIABLE_COMMENT

public static final Convention.Key TIP_DECLARE_COLLECTION_VARIABLE_COMMENT
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_EMPTY_FINALLY

public static final Convention.Key TIP_EMPTY_FINALLY
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_DECLARE_COLLECTION_COMMENT

public static final Convention.Key TIP_DECLARE_COLLECTION_COMMENT
Perform this code inspection? (boolean)

Since:
1.0b8

TIP_WRONG_COLLECTION_COMMENT

public static final Convention.Key TIP_WRONG_COLLECTION_COMMENT
Perform this code inspection (boolean)

Since:
1.0b8

INTERNAL_VERSION

public static final Convention.Key INTERNAL_VERSION
The version number of the current code convention. For internal use only.


MSG_PRIORITY_IO

public static final Convention.Key MSG_PRIORITY_IO
Level of the Loggers.IO (int).


MSG_PRIORITY_PARSER

public static final Convention.Key MSG_PRIORITY_PARSER
Level of the Loggers.PARSER (int).


MSG_PRIORITY_PARSER_JAVADOC

public static final Convention.Key MSG_PRIORITY_PARSER_JAVADOC
Level of the Loggers.PARSER_JAVADOC (int).


MSG_PRIORITY_PRINTER

public static final Convention.Key MSG_PRIORITY_PRINTER
Level of the Loggers.PRINTER (int).


MSG_PRIORITY_PRINTER_JAVADOC

public static final Convention.Key MSG_PRIORITY_PRINTER_JAVADOC
Level of the Loggers.PRINTER_JAVADOC (int).


MSG_PRIORITY_TRANSFORM

public static final Convention.Key MSG_PRIORITY_TRANSFORM
Level of the Loggers.TRANSFORM (int).


MSG_SHOW_ERROR_STACKTRACE

public static final Convention.Key MSG_SHOW_ERROR_STACKTRACE
Display stacktrace for errors? (boolean)


THREAD_COUNT

public static final Convention.Key THREAD_COUNT
Number of processing threads to use (int).


ALIGN_PARAMS_METHOD_DEF

public static final Convention.Key ALIGN_PARAMS_METHOD_DEF
Specifies whether method declaration parameters should be aligned (boolean).


ALIGN_TERNARY_OPERATOR

public static final Convention.Key ALIGN_TERNARY_OPERATOR
Align the indiviual parts of the ternary operator? (boolean)

Since:
1.0b9

ALIGN_METHOD_CALL_CHAINS

public static final Convention.Key ALIGN_METHOD_CALL_CHAINS
Force alignment of indiviual method call chains? (boolean)

Since:
1.0b9

ALIGN_VAR_ASSIGNS

public static final Convention.Key ALIGN_VAR_ASSIGNS
Specifies whether variable assignments should be aligned (boolean).


ALIGN_VAR_IDENTS

public static final Convention.Key ALIGN_VAR_IDENTS
Specifies whether variable identifiers should be aligned (boolean).


BACKUP_DIRECTORY

public static final Convention.Key BACKUP_DIRECTORY
The directory where backup files are to be stored (String).


BACKUP_LEVEL

public static final Convention.Key BACKUP_LEVEL
Number of backup files to hold (int).


BLANK_LINES_AFTER_BLOCK

public static final Convention.Key BLANK_LINES_AFTER_BLOCK
Number of blank lines after a block (int).


BLANK_LINES_AFTER_BRACE_LEFT

public static final Convention.Key BLANK_LINES_AFTER_BRACE_LEFT
Force the given number of blank lines after left curly braces (int).


BLANK_LINES_AFTER_CLASS

public static final Convention.Key BLANK_LINES_AFTER_CLASS
Number of blank lines after classes (int).


BLANK_LINES_AFTER_DECLARATION

public static final Convention.Key BLANK_LINES_AFTER_DECLARATION
Number of blank lines after declarations (int).


BLANK_LINES_AFTER_FOOTER

public static final Convention.Key BLANK_LINES_AFTER_FOOTER
Number of blank lines after the footer (int).


BLANK_LINES_AFTER_HEADER

public static final Convention.Key BLANK_LINES_AFTER_HEADER
Number of blank lines after the header (int).


BLANK_LINES_AFTER_IMPORT

public static final Convention.Key BLANK_LINES_AFTER_IMPORT
Number of blank lines after the last import statement (int).


BLANK_LINES_AFTER_INTERFACE

public static final Convention.Key BLANK_LINES_AFTER_INTERFACE
Number of blank lines after interfaces (int).


BLANK_LINES_AFTER_METHOD

public static final Convention.Key BLANK_LINES_AFTER_METHOD
Number of blank lines after methods (int).


BLANK_LINES_AFTER_PACKAGE

public static final Convention.Key BLANK_LINES_AFTER_PACKAGE
Number of blank lines after the package statement (int).


BLANK_LINES_BEFORE_BLOCK

public static final Convention.Key BLANK_LINES_BEFORE_BLOCK
Number of blank lines before a block (int).


BLANK_LINES_BEFORE_BRACE_RIGHT

public static final Convention.Key BLANK_LINES_BEFORE_BRACE_RIGHT
Force the given number of blank lines before right curly braces (int).


BLANK_LINES_BEFORE_CASE_BLOCK

public static final Convention.Key BLANK_LINES_BEFORE_CASE_BLOCK
Number of blank lines before a case block (int).


BLANK_LINES_BEFORE_COMMENT_JAVADOC

public static final Convention.Key BLANK_LINES_BEFORE_COMMENT_JAVADOC
Number of blank lines before Javadoc comments (int).


BLANK_LINES_BEFORE_COMMENT_MULTI_LINE

public static final Convention.Key BLANK_LINES_BEFORE_COMMENT_MULTI_LINE
Number of blank lines before multi-line comments (int).


BLANK_LINES_BEFORE_COMMENT_SINGLE_LINE

public static final Convention.Key BLANK_LINES_BEFORE_COMMENT_SINGLE_LINE
Number of blank lines before single-line commenents (int).


BLANK_LINES_BEFORE_CONTROL

public static final Convention.Key BLANK_LINES_BEFORE_CONTROL
Number of blank lines before a flow control statement (int).


BLANK_LINES_BEFORE_DECLARATION

public static final Convention.Key BLANK_LINES_BEFORE_DECLARATION
Number of blank lines before declarations (int).


BLANK_LINES_BEFORE_FOOTER

public static final Convention.Key BLANK_LINES_BEFORE_FOOTER
Number of blank lines before the footer (int).


BLANK_LINES_BEFORE_HEADER

public static final Convention.Key BLANK_LINES_BEFORE_HEADER
Number of blank lines before the header (int).


BLANK_LINES_KEEP_UP_TO

public static final Convention.Key BLANK_LINES_KEEP_UP_TO
Number of blank lines to keep up to (int).


BRACE_EMPTY_CUDDLE

public static final Convention.Key BRACE_EMPTY_CUDDLE
Cuddle empty braces? (boolean)


BRACE_EMPTY_INSERT_STATEMENT

public static final Convention.Key BRACE_EMPTY_INSERT_STATEMENT
Insert an empty statement into empty braces? (boolean)


BRACE_INSERT_IF_ELSE

public static final Convention.Key BRACE_INSERT_IF_ELSE
Insert braces around single if-else statements? (boolean)


BRACE_INSERT_FOR

public static final Convention.Key BRACE_INSERT_FOR
Insert unneccessary braces around single for statements? (boolean)


BRACE_INSERT_WHILE

public static final Convention.Key BRACE_INSERT_WHILE
Insert braces around single while statements? (boolean)


BRACE_INSERT_DO_WHILE

public static final Convention.Key BRACE_INSERT_DO_WHILE
Insert braces around single do-while statements? (boolean)


BRACE_REMOVE_IF_ELSE

public static final Convention.Key BRACE_REMOVE_IF_ELSE
Remove unneccessary braces around single if-else statements? (boolean)


BRACE_REMOVE_FOR

public static final Convention.Key BRACE_REMOVE_FOR
Remove unneccessary braces around single for statements? (boolean)


BRACE_REMOVE_WHILE

public static final Convention.Key BRACE_REMOVE_WHILE
Remove braces around single while statements? (boolean)


BRACE_REMOVE_DO_WHILE

public static final Convention.Key BRACE_REMOVE_DO_WHILE
Remove braces around single do-while statements? (boolean)


BRACE_REMOVE_BLOCK

public static final Convention.Key BRACE_REMOVE_BLOCK
Remove unneccessary braces for blocks? (boolean)


INSERT_TRAILING_NEWLINE

public static final Convention.Key INSERT_TRAILING_NEWLINE
Print a newline after the last curly brace? (boolean)


BRACE_TREAT_DIFFERENT

public static final Convention.Key BRACE_TREAT_DIFFERENT
Should class and method blocks be treated different? (boolean)


BRACE_TREAT_DIFFERENT_IF_WRAPPED

public static final 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)

Since:
1.0b9

ARRAY_BRACKETS_AFTER_IDENT

public static final Convention.Key ARRAY_BRACKETS_AFTER_IDENT
Should the brackets for array types be printed after the type or after the identifier? (boolean)

Since:
1.0b9

CHUNKS_BY_BLANK_LINES

public static final Convention.Key CHUNKS_BY_BLANK_LINES
Enable chunk detection by blank lines? (boolean)


CHUNKS_BY_COMMENTS

public static final Convention.Key CHUNKS_BY_COMMENTS
Enable chunk detection by comments? (boolean)


COMMENT_FORMAT_MULTI_LINE

public static final Convention.Key COMMENT_FORMAT_MULTI_LINE
Format multi-line comments? (boolean)


COMMENT_JAVADOC_CHECK_TAGS

public static final Convention.Key COMMENT_JAVADOC_CHECK_TAGS
Check Javadoc standard tags? (boolean)


COMMENT_JAVADOC_CHECK_TAGS_THROWS

public static final Convention.Key COMMENT_JAVADOC_CHECK_TAGS_THROWS
Should Javadoc &064;throws tags be checked or not? (boolean)

Since:
1.0b9

COMMENT_JAVADOC_FIELDS_SHORT

public static final Convention.Key COMMENT_JAVADOC_FIELDS_SHORT
Print Javadoc comments for fields in one line if possible? (boolean)

Since:
1.0b9

COMMENT_JAVADOC_TEMPLATE_INTERFACE

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_INTERFACE
Javadoc template for interfaces (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_CLASS

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_CLASS
Javadoc template for classes (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_VARIABLE

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_VARIABLE
Javadoc template for variables (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_METHOD_TOP

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_TOP
Javadoc template for methods, top part (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_METHOD_PARAM

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_PARAM
Javadoc template for methods, parameter part (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_METHOD_EXCEPTION

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_EXCEPTION
Javadoc template for methods, exceptions part (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_METHOD_RETURN

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_RETURN
Javadoc template for methods, return part (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_METHOD_BOTTOM

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_METHOD_BOTTOM
Javadoc template for methods, bottom part (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_CTOR_TOP

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_CTOR_TOP
Javadoc template for constructors, top part (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_CTOR_EXCEPTION

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_CTOR_EXCEPTION
Javadoc template for constructors, exceptions part (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_CTOR_PARAM

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_CTOR_PARAM
Javadoc template for constructors, parameters part (String).

Since:
1.0b8

COMMENT_JAVADOC_TEMPLATE_CTOR_BOTTOM

public static final Convention.Key COMMENT_JAVADOC_TEMPLATE_CTOR_BOTTOM
Javadoc template for constructors, bottom part (String).

Since:
1.0b8

COMMENT_JAVADOC_CLASS_MASK

public static final Convention.Key COMMENT_JAVADOC_CLASS_MASK
Insert missing Javadoc comment for classes/interfaces? (int)


COMMENT_JAVADOC_CTOR_MASK

public static final Convention.Key COMMENT_JAVADOC_CTOR_MASK
Insert missing Javadoc comment for constructors? (int)


COMMENT_JAVADOC_VARIABLE_MASK

public static final Convention.Key COMMENT_JAVADOC_VARIABLE_MASK
Insert missing Javadoc comment for variables? (int)


COMMENT_JAVADOC_METHOD_MASK

public static final Convention.Key COMMENT_JAVADOC_METHOD_MASK
Insert missing Javadoc comment for methods? (int)


COMMENT_JAVADOC_INNER_CLASS

public static final Convention.Key COMMENT_JAVADOC_INNER_CLASS
Insert missing Javadoc comments for inner classes too? (boolean)


DONT_COMMENT_JAVADOC_WHEN_ML

public static final Convention.Key DONT_COMMENT_JAVADOC_WHEN_ML
Dont insert missing Javadoc comments if multiline comment exists (boolean)


COMMENT_JAVADOC_PARSE

public static final Convention.Key COMMENT_JAVADOC_PARSE
Parse Javadoc comments or add AS IS? (boolean)


COMMENT_JAVADOC_REMOVE

public static final Convention.Key COMMENT_JAVADOC_REMOVE
Remove Javadoc comments? (boolean)


COMMENT_JAVADOC_TRANSFORM

public static final Convention.Key COMMENT_JAVADOC_TRANSFORM
Transform non-Javadoc comments to Javadoc comments? (boolean)


COMMENT_REMOVE_MULTI_LINE

public static final Convention.Key COMMENT_REMOVE_MULTI_LINE
Remove multi-line comments? (boolean)


COMMENT_REMOVE_SINGLE_LINE

public static final Convention.Key COMMENT_REMOVE_SINGLE_LINE
Remove single-line comments? (boolean)


FOOTER

public static final Convention.Key FOOTER
Insert a footer? (boolean)


FOOTER_KEYS

public static final Convention.Key FOOTER_KEYS
Identify keys of the footers that are to be deleted (String).


FOOTER_TEXT

public static final Convention.Key FOOTER_TEXT
The footer text (String).


FORCE_FORMATTING

public static final Convention.Key FORCE_FORMATTING
Should the processing of a source file be forced although the file hasn't changed? (boolean)


INSERT_FINAL_MODIFIER_FOR_PARAMETERS

public static final Convention.Key INSERT_FINAL_MODIFIER_FOR_PARAMETERS
Should the "final" modifier be added for method parameters? (boolean)


HEADER

public static final Convention.Key HEADER
Insert a header? (boolean)


HEADER_SMART_MODE_LINES

public static final 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).

Since:
1.0b8

FOOTER_SMART_MODE_LINES

public static final 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).

Since:
1.0b8

HEADER_KEYS

public static final Convention.Key HEADER_KEYS
Identify keys of the headers that are to be deleted (String).


HEADER_TEXT

public static final Convention.Key HEADER_TEXT
The header text (String).


HISTORY_POLICY

public static final Convention.Key HISTORY_POLICY
The history policy to use (String). Either "none", "file" or "comment".


HISTORY_METHOD

public static final Convention.Key HISTORY_METHOD
The method used to identify changed files.

Since:
1.0b9

CLASS_REPOSITORY_DIRECTORY

public static final Convention.Key CLASS_REPOSITORY_DIRECTORY
Directory to store class repository files (String).


IMPORT_POLICY

public static final Convention.Key IMPORT_POLICY
Specifies the import optimization policy (String).


IMPORT_GROUPING

public static final Convention.Key IMPORT_GROUPING
Holds grouping info for distinct package names (String).


IMPORT_GROUPING_DEPTH

public static final Convention.Key IMPORT_GROUPING_DEPTH
Default import grouping depth (int).


IMPORT_SORT

public static final Convention.Key IMPORT_SORT
Sort import statements? (boolean)


INDENT_CASE_FROM_SWITCH

public static final Convention.Key INDENT_CASE_FROM_SWITCH
Indent case block in switch statements? (boolean)


INDENT_DEEP

public static final Convention.Key INDENT_DEEP
Should standard indentation be used to indent wrapped lines, or rather the deep indentation policy? (boolean).


INDENT_CONTINUATION_OPERATOR

public static final Convention.Key INDENT_CONTINUATION_OPERATOR
Should continuation indentation be used for operators? (boolean).


INDENT_SIZE_CONTINUATION

public static final Convention.Key INDENT_SIZE_CONTINUATION
Continuation indent size (int).


INDENT_CONTINUATION_BLOCK

public static final Convention.Key INDENT_CONTINUATION_BLOCK
Should continuation indentation be used for statement blocks? (boolean).


INDENT_FIRST_COLUMN_COMMENT

public static final Convention.Key INDENT_FIRST_COLUMN_COMMENT
Indent first column comments? (boolean)


INDENT_LABEL

public static final Convention.Key INDENT_LABEL
Indent labels? (boolean)


INDENT_SIZE

public static final Convention.Key INDENT_SIZE
Amount of space to use for indentation (int).


INDENT_SIZE_BRACE_CUDDLED

public static final Convention.Key INDENT_SIZE_BRACE_CUDDLED
Indentation before cuddled braces (int).


INDENT_SIZE_BRACE_LEFT

public static final Convention.Key INDENT_SIZE_BRACE_LEFT
Indentation before a left curly brace (int).


INDENT_SIZE_BRACE_RIGHT

public static final Convention.Key INDENT_SIZE_BRACE_RIGHT
Indentation before a right curly brace (int).


INDENT_SIZE_BRACE_RIGHT_AFTER

public static final Convention.Key INDENT_SIZE_BRACE_RIGHT_AFTER
Indentation after a right curly brace (int).


INDENT_SIZE_COMMENT_ENDLINE

public static final Convention.Key INDENT_SIZE_COMMENT_ENDLINE
Indentation before an endline comment (int).


INDENT_SIZE_DEEP

public static final Convention.Key INDENT_SIZE_DEEP
Maximal amount of spaces for wrapping should be forced (int).


INDENT_SIZE_EXTENDS

public static final Convention.Key INDENT_SIZE_EXTENDS
Indentation for extends types (int).

Since:
1.0b7

INDENT_SIZE_IMPLEMENTS

public static final Convention.Key INDENT_SIZE_IMPLEMENTS
Indentation for implements types (int).

Since:
1.0b7

INDENT_SIZE_LEADING

public static final Convention.Key INDENT_SIZE_LEADING
Indentation before every line (int).


INDENT_SIZE_THROWS

public static final Convention.Key INDENT_SIZE_THROWS
Indentation for throws types (int).

Since:
1.0b7

INDENT_SIZE_TABS

public static final Convention.Key INDENT_SIZE_TABS
Number of spaces to assume for tabs (int).


INDENT_WITH_TABS

public static final Convention.Key INDENT_WITH_TABS
Fill gaps with tabs? (boolean)


INDENT_WITH_TABS_ONLY_LEADING

public static final Convention.Key INDENT_WITH_TABS_ONLY_LEADING
Use spaces for continuation after tabs? (boolean)


INSERT_EXPRESSION_PARENTHESIS

public static final Convention.Key INSERT_EXPRESSION_PARENTHESIS
Insert parenthesis around expressions to make precedence clear? (boolean)


INSERT_LOGGING_CONDITIONAL

public static final Convention.Key INSERT_LOGGING_CONDITIONAL
Insert conditional expresssion for debug logging calls? (boolean)


INSERT_SERIAL_UID

public static final Convention.Key INSERT_SERIAL_UID
Insert serial version UID for serializable classes? (boolean)


COMMENT_JAVADOC_TAGS_INLINE

public static final Convention.Key COMMENT_JAVADOC_TAGS_INLINE
Custom Javadoc in-line tags definitions (String).

Since:
1.0b7

COMMENT_JAVADOC_TAGS_STANDARD

public static final Convention.Key COMMENT_JAVADOC_TAGS_STANDARD
Custom Javadoc standard tags definitions (String).

Since:
1.0b7

PADDING_ASSIGNMENT_OPERATORS

public static final Convention.Key PADDING_ASSIGNMENT_OPERATORS
Pad assignment operators? (boolean)


PADDING_BITWISE_OPERATORS

public static final Convention.Key PADDING_BITWISE_OPERATORS
Pad bitwise operators? (boolean)


PADDING_BRACES

public static final Convention.Key PADDING_BRACES
Insert spaces after the left, and before the right curly brace for array initializations? (boolean)


PADDING_BRACKETS

public static final Convention.Key PADDING_BRACKETS
Insert spaces after the left, and before the right bracket? (boolean)


PADDING_CAST

public static final Convention.Key PADDING_CAST
Insert spaces after the left, and before the right type cast parenthesis? (boolean)


PADDING_LOGICAL_OPERATORS

public static final Convention.Key PADDING_LOGICAL_OPERATORS
Pad logical operators? (boolean)


PADDING_MATH_OPERATORS

public static final Convention.Key PADDING_MATH_OPERATORS
Pad mathematical operators? (boolean)


PADDING_PAREN

public static final Convention.Key PADDING_PAREN
Insert spaces after the left, and before the right parenthesis? (boolean)


PADDING_RELATIONAL_OPERATORS

public static final Convention.Key PADDING_RELATIONAL_OPERATORS
Pad relational operators? (boolean)


PADDING_SHIFT_OPERATORS

public static final Convention.Key PADDING_SHIFT_OPERATORS
Pad shift operators? (boolean)


SORT

public static final Convention.Key SORT
Sort the different elements of a Java source file? (boolean)


SORT_CLASS

public static final Convention.Key SORT_CLASS
Sort classes declarations? (boolean)


SORT_ANNOTATION

public static final Convention.Key SORT_ANNOTATION
Sort annotation declarations? (boolean)


SORT_ENUM

public static final Convention.Key SORT_ENUM
Sort enum declarations? (boolean)


SORT_CTOR

public static final Convention.Key SORT_CTOR
Sort constructors declarations? (boolean)


SORT_INTERFACE

public static final Convention.Key SORT_INTERFACE
Sort interfaces declarations? (boolean)


SORT_METHOD

public static final Convention.Key SORT_METHOD
Sort methods declarations? (boolean)


SORT_METHOD_BEAN

public static final Convention.Key SORT_METHOD_BEAN
Sort method bean declarations? (boolean)


SORT_MODIFIERS

public static final Convention.Key SORT_MODIFIERS
Sort modifers? (boolean)


SORT_ORDER

public static final Convention.Key SORT_ORDER
String indicating the declaration sort order (String).


SORT_ORDER_MODIFIERS

public static final Convention.Key SORT_ORDER_MODIFIERS
String indicating the modifiers sort order (String).


SORT_VARIABLE

public static final Convention.Key SORT_VARIABLE
Sort variable declarations? (boolean)


ENVIRONMENT

public static final Convention.Key ENVIRONMENT
String encoded environment variables (String).

Since:
1.0b8

SPACE_AFTER_CAST

public static final Convention.Key SPACE_AFTER_CAST
Print a space after type casting? (boolean)


SPACE_AFTER_COMMA

public static final Convention.Key SPACE_AFTER_COMMA
Print a space after a comma? (boolean)


SPACE_AFTER_SEMICOLON

public static final Convention.Key SPACE_AFTER_SEMICOLON
Print a space after a semicolon? (boolean)


SPACE_BEFORE_BRACES

public static final Convention.Key SPACE_BEFORE_BRACES
Print a space before braces (of arrays)? (boolean)


SPACE_BEFORE_BRACKETS

public static final Convention.Key SPACE_BEFORE_BRACKETS
Print a space before brackets? (boolean)


SPACE_BEFORE_BRACKETS_TYPES

public static final Convention.Key SPACE_BEFORE_BRACKETS_TYPES
Print a space before types with brackets (int).


SPACE_BEFORE_CASE_COLON

public static final Convention.Key SPACE_BEFORE_CASE_COLON
Print a space before the colon of a case block? (boolean)


SPACE_BEFORE_LOGICAL_NOT

public static final Convention.Key SPACE_BEFORE_LOGICAL_NOT
Print a space before the negation of boolean expressions? (boolean)


SPACE_BEFORE_METHOD_CALL_PAREN

public static final Convention.Key SPACE_BEFORE_METHOD_CALL_PAREN
Print a space before method call parenthesis? (boolean)


SPACE_BEFORE_METHOD_DEF_PAREN

public static final Convention.Key SPACE_BEFORE_METHOD_DEF_PAREN
Print a space before method definition parenthesis? (boolean)


SPACE_BEFORE_STATEMENT_PAREN

public static final Convention.Key SPACE_BEFORE_STATEMENT_PAREN
Print a space before java statement parenthesis? (boolean)


STRIP_QUALIFICATION

public static final Convention.Key STRIP_QUALIFICATION
Strip qualification for identifiers? (boolean)


SEPARATOR_FILL_CHARACTER

public static final Convention.Key SEPARATOR_FILL_CHARACTER
The fill character to use for the separator comments (String).

Since:
1.0b8

COMMENT_INSERT_SEPARATOR

public static final Convention.Key COMMENT_INSERT_SEPARATOR
Insert separator comments between the different tree portions ( class/interface/variable/method/constructor/initialiation declarations)? (boolean)


COMMENT_INSERT_SEPARATOR_RECURSIVE

public static final Convention.Key COMMENT_INSERT_SEPARATOR_RECURSIVE
Insert separator comments between the different tree portions of inner classes/interfaces (a.k.a recursively)? (boolean)


SEPARATOR_STATIC_VAR_INIT

public static final Convention.Key SEPARATOR_STATIC_VAR_INIT
Separator text for the static variables and initalizers section (String).

Since:
1.0b8

SEPARATOR_INSTANCE_VAR

public static final Convention.Key SEPARATOR_INSTANCE_VAR
Separator text for the instance variables section (String).

Since:
1.0b8

SEPARATOR_INSTANCE_INIT

public static final Convention.Key SEPARATOR_INSTANCE_INIT
Separator text for the instance initializers section (String).

Since:
1.0b8

SEPARATOR_ANNOTATION_INIT

public static final Convention.Key SEPARATOR_ANNOTATION_INIT
Separator text for the annotation section (String).

Since:
1.5b1

SEPARATOR_ENUM_INIT

public static final Convention.Key SEPARATOR_ENUM_INIT
Separator text for the enumeration section (String).

Since:
1.5b1

SEPARATOR_ENUM_CONSTANT_INIT

public static final Convention.Key SEPARATOR_ENUM_CONSTANT_INIT
Separator text for the enumeration constant section (String).

Since:
1.5b4

SEPARATOR_CTOR

public static final Convention.Key SEPARATOR_CTOR
Separator text for the constructors section (String).

Since:
1.0b8

SEPARATOR_METHOD

public static final Convention.Key SEPARATOR_METHOD
Separator text for the methods section (String).

Since:
1.0b8

SEPARATOR_INTERFACE

public static final Convention.Key SEPARATOR_INTERFACE
Separator text for the interfaces section (String).

Since:
1.0b8

SEPARATOR_CLASS

public static final Convention.Key SEPARATOR_CLASS
Separator text for the inner classes section (String).

Since:
1.0b8

LINE_LENGTH

public static final Convention.Key LINE_LENGTH
Number of characters in each line(int).


LINE_WRAP

public static final Convention.Key LINE_WRAP
Use line wrapping? (boolean)


LINE_WRAP_AFTER_ASSIGN

public static final Convention.Key LINE_WRAP_AFTER_ASSIGN
Prefer wrapping after assignments? (boolean)

Since:
1.0b9

LINE_WRAP_PAREN_GROUPING

public static final Convention.Key LINE_WRAP_PAREN_GROUPING
Wrap and indent expressions in grouping parentheses ? (boolean)

Since:
1.0b9

LINE_WRAP_AFTER_LEFT_PAREN

public static final Convention.Key LINE_WRAP_AFTER_LEFT_PAREN
Prefer line wrapping after the left parentheses of parameter/expression lists? (boolean)

Since:
1.0b9

LINE_WRAP_BEFORE_RIGHT_PAREN

public static final Convention.Key LINE_WRAP_BEFORE_RIGHT_PAREN
Insert a newline before the right parentheses of parameter/epxression lists? (boolean)

Since:
1.0b9

LINE_WRAP_BEFORE_OPERATOR

public static final Convention.Key LINE_WRAP_BEFORE_OPERATOR
Should line wrapping be performed before or after operators? (boolean)


LINE_WRAP_AFTER_PARAMS_METHOD_CALL

public static final Convention.Key LINE_WRAP_AFTER_PARAMS_METHOD_CALL
Force wrapping/alignment after parameters for method calls? (boolean)


LINE_WRAP_AFTER_CHAINED_METHOD_CALL

public static final Convention.Key LINE_WRAP_AFTER_CHAINED_METHOD_CALL
Force wrapping/alignment of chained method? (boolean)

Since:
1.0b7

LINE_WRAP_AFTER_PARAMS_METHOD_CALL_IF_NESTED

public static final 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)


LINE_WRAP_AFTER_PARAMS_METHOD_DEF

public static final Convention.Key LINE_WRAP_AFTER_PARAMS_METHOD_DEF
Force wrapping/alignment of parameters for method/constructor declarations? (boolean)


ALIGN_TERNARY_EXPRESSION

public static final Convention.Key ALIGN_TERNARY_EXPRESSION
Force wrapping after the first ternary operand? (boolean)


ALIGN_TERNARY_VALUES

public static final Convention.Key ALIGN_TERNARY_VALUES
Force wrapping after the second ternary operand? (boolean)


LINE_WRAP_AFTER_LABEL

public static final Convention.Key LINE_WRAP_AFTER_LABEL
Print newline after labels? (boolean)


BRACE_NEWLINE_LEFT

public static final Convention.Key BRACE_NEWLINE_LEFT
Print newline before left braces? (boolean)


BRACE_NEWLINE_RIGHT

public static final Convention.Key BRACE_NEWLINE_RIGHT
Print newline after right braces? (boolean)


LINE_WRAP_AFTER_TYPES_EXTENDS

public static final Convention.Key LINE_WRAP_AFTER_TYPES_EXTENDS
Force alignment of extends types for class/interface declarations? (boolean)


LINE_WRAP_AFTER_TYPES_IMPLEMENTS

public static final Convention.Key LINE_WRAP_AFTER_TYPES_IMPLEMENTS
Force alignment of implements types for class/interface declarations? (boolean)


LINE_WRAP_AFTER_TYPES_THROWS

public static final Convention.Key LINE_WRAP_AFTER_TYPES_THROWS
Force wrapping/alignment of exception types for method/ctor declarations? (boolean)


LINE_WRAP_ARRAY_ELEMENTS

public static final Convention.Key LINE_WRAP_ARRAY_ELEMENTS
Force wrapping/alignment after given number of array elements (int).


ENUM_LCURLY_NO_NEW_LINE

public static final Convention.Key ENUM_LCURLY_NO_NEW_LINE
Enumeration LCURLY statrts new line ? (boolean)

Since:
1.5

ENUM_ALIGN_VALUES_WHEN_EXCEEDS

public static final Convention.Key ENUM_ALIGN_VALUES_WHEN_EXCEEDS
Force alignment of wrapping ENUM values after a certain amount ? (int)

Since:
1.5

ANON_LCURLY_NO_NEW_LINE

public static final Convention.Key ANON_LCURLY_NO_NEW_LINE
Annotation LCURLY statrts new line ? (boolean)

Since:
1.5

ANON_DEF_LCURLY_NO_NEW_LINE

public static final Convention.Key ANON_DEF_LCURLY_NO_NEW_LINE
Annotation Def LCURLY statrts new line ? (boolean)

Since:
1.5

ANON_ALIGN_VALUES_WHEN_EXCEEDS

public static final Convention.Key ANON_ALIGN_VALUES_WHEN_EXCEEDS
Force alignment of wrapping ANON values after a certain amount ? (int)

Since:
1.5

ANON_DEF_ALIGN_VALUES_WHEN_EXCEEDS

public static final Convention.Key ANON_DEF_ALIGN_VALUES_WHEN_EXCEEDS
Force alignment of wrapping ANON DEF values after a certain amount ? (int)

Since:
1.5

LINE_WRAP_BEFORE_IMPLEMENTS

public static final Convention.Key LINE_WRAP_BEFORE_IMPLEMENTS
Force line wrapping before implements? (boolean)


LINE_WRAP_BEFORE_EXTENDS

public static final Convention.Key LINE_WRAP_BEFORE_EXTENDS
Force line wrapping before extends? (boolean)


LINE_WRAP_BEFORE_THROWS

public static final Convention.Key LINE_WRAP_BEFORE_THROWS
Force line wrapping before throws? (boolean)

Since:
1.0b7

LINE_WRAP_AFTER_TYPES_EXTENDS_EXCEED

public static final Convention.Key LINE_WRAP_AFTER_TYPES_EXTENDS_EXCEED
Force alignment of extends types for class/interface declarations? (boolean)

Since:
1.0b9

LINE_WRAP_AFTER_TYPES_IMPLEMENTS_EXCEED

public static final Convention.Key LINE_WRAP_AFTER_TYPES_IMPLEMENTS_EXCEED
Force alignment of implements types for class/interface declarations? (boolean)

Since:
1.0b9

LINE_WRAP_PARAMS_EXCEED

public static final Convention.Key LINE_WRAP_PARAMS_EXCEED
Force wrapping/alignment of successive parameters/expression if the first parameter/expression was wrapped ? (boolean)

Since:
1.0b9

LINE_WRAP_PARAMS_HARD

public static final Convention.Key LINE_WRAP_PARAMS_HARD
If it is better to wrap the parameters deeply then do so (boolean)

Since:
1.0b9

LINE_WRAP_PARAMS_DEEP

public static final Convention.Key LINE_WRAP_PARAMS_DEEP
When wrapping parameters always do it deeply (boolean)

Since:
1.0b9

LINE_WRAP_AFTER_TYPES_THROWS_EXCEED

public static final Convention.Key LINE_WRAP_AFTER_TYPES_THROWS_EXCEED
Force alignment of throws types for method/ctor declarations? (boolean)

Since:
1.0b9

BRACE_ADD_COMMENT

public static final Convention.Key BRACE_ADD_COMMENT
Add comments like end if and end switch after brace blocks

Method Detail

isValid

public static boolean isValid(Convention.Key key)
Determines whether the given key is valid.

Parameters:
key - a code convention key.
Returns:
true if the given key is valid.
Since:
1.0b9

main

public static void main(java.lang.String[] args)
Called to dump the keys

Parameters:
args - Args ignored


Copyright © 1997-2005 Jalopy. All Rights Reserved.