Uses of Class
org.jboss.jdeparser.FormatPreferences.Indentation
-
-
Uses of FormatPreferences.Indentation in org.jboss.jdeparser
Fields in org.jboss.jdeparser declared as FormatPreferences.Indentation Modifier and Type Field Description private FormatPreferences.Indentation
ConfigIndent. indentation
Fields in org.jboss.jdeparser with type parameters of type FormatPreferences.Indentation Modifier and Type Field Description private java.util.EnumSet<FormatPreferences.Indentation>
FormatPreferences. absoluteIndents
private static java.util.EnumSet<FormatPreferences.Indentation>
FormatPreferences. DEFAULT_ABS_INDENTS
private static EnumIntMap<FormatPreferences.Indentation>
FormatPreferences. DEFAULT_INDENTS
private EnumIntMap<FormatPreferences.Indentation>
FormatPreferences. indents
Methods in org.jboss.jdeparser that return FormatPreferences.Indentation Modifier and Type Method Description (package private) FormatPreferences.Indentation
ConfigIndent. getIndentation()
(package private) FormatPreferences.Indentation
AbstractJClassDef. getMemberIndentation()
static FormatPreferences.Indentation
FormatPreferences.Indentation. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FormatPreferences.Indentation[]
FormatPreferences.Indentation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.jdeparser with parameters of type FormatPreferences.Indentation Modifier and Type Method Description void
FormatPreferences. clearIndentAbsolute(FormatPreferences.Indentation indentation)
Clear absolute indentation for the given context.int
FormatPreferences. getIndent(FormatPreferences.Indentation indentation)
Get the configured indentation for the given context.boolean
FormatPreferences. isIndentAbsolute(FormatPreferences.Indentation indentation)
Determine whether the indentation for the given context is absolute or relative.(package private) void
SourceFileWriter. popIndent(FormatPreferences.Indentation indentation)
(package private) void
SourceFileWriter. pushIndent(FormatPreferences.Indentation indentation)
int
FormatPreferences. setIndent(FormatPreferences.Indentation indentation, int value)
Set the configured indentation for the given context.void
FormatPreferences. setIndentAbsolute(FormatPreferences.Indentation indentation)
Set absolute indentation for the given context.Constructors in org.jboss.jdeparser with parameters of type FormatPreferences.Indentation Constructor Description ConfigIndent(FormatPreferences.Indentation indentation)
-