Top Description Constructors Methods
org.jabref.logic.cleanup

public abstract Class Formatter

extends Object
Class Inheritance
Known Direct Subclasses
org.jabref.logic.formatter.IdentityFormatter, org.jabref.logic.formatter.bibtexfields.NormalizeUnicodeFormatter, org.jabref.logic.formatter.bibtexfields.AddBracesFormatter, org.jabref.logic.formatter.bibtexfields.CleanupUrlFormatter, org.jabref.logic.formatter.bibtexfields.ClearFormatter, org.jabref.logic.formatter.bibtexfields.EscapeAmpersandsFormatter, org.jabref.logic.formatter.bibtexfields.EscapeDollarSignFormatter, org.jabref.logic.formatter.bibtexfields.EscapeUnderscoresFormatter, org.jabref.logic.formatter.bibtexfields.HtmlToLatexFormatter, org.jabref.logic.formatter.bibtexfields.HtmlToUnicodeFormatter, org.jabref.logic.formatter.bibtexfields.LatexCleanupFormatter, org.jabref.logic.formatter.bibtexfields.NormalizeDateFormatter, org.jabref.logic.formatter.bibtexfields.NormalizeEnDashesFormatter, org.jabref.logic.formatter.bibtexfields.NormalizeMonthFormatter, org.jabref.logic.formatter.bibtexfields.NormalizeNamesFormatter, org.jabref.logic.formatter.bibtexfields.NormalizePagesFormatter, org.jabref.logic.formatter.bibtexfields.OrdinalsToSuperscriptFormatter, org.jabref.logic.formatter.bibtexfields.RegexFormatter, org.jabref.logic.formatter.bibtexfields.RemoveDigitsFormatter, org.jabref.logic.formatter.bibtexfields.RemoveEnclosingBracesFormatter, org.jabref.logic.formatter.bibtexfields.RemoveHyphenatedNewlinesFormatter, org.jabref.logic.formatter.bibtexfields.RemoveNewlinesFormatter, org.jabref.logic.formatter.bibtexfields.RemoveRedundantSpacesFormatter, org.jabref.logic.formatter.bibtexfields.RemoveWordEnclosingAndOuterEnclosingBracesFormatter, org.jabref.logic.formatter.bibtexfields.ReplaceTabsBySpaceFormater, org.jabref.logic.formatter.bibtexfields.ShortenDOIFormatter, org.jabref.logic.formatter.bibtexfields.TrimWhitespaceFormatter, org.jabref.logic.formatter.bibtexfields.UnicodeToLatexFormatter, org.jabref.logic.formatter.bibtexfields.UnitsToLatexFormatter, org.jabref.logic.formatter.casechanger.CamelFormatter, org.jabref.logic.formatter.casechanger.CamelNFormatter, org.jabref.logic.formatter.casechanger.CapitalizeFormatter, org.jabref.logic.formatter.casechanger.LowerCaseFormatter, org.jabref.logic.formatter.casechanger.ProtectTermsFormatter, org.jabref.logic.formatter.casechanger.SentenceCaseFormatter, org.jabref.logic.formatter.casechanger.ShortTitleFormatter, org.jabref.logic.formatter.casechanger.TitleCaseFormatter, org.jabref.logic.formatter.casechanger.UnprotectTermsFormatter, org.jabref.logic.formatter.casechanger.UpperCaseFormatter, org.jabref.logic.formatter.casechanger.VeryShortTitleFormatter, org.jabref.logic.formatter.minifier.MinifyNameListFormatter, org.jabref.logic.formatter.minifier.TruncateFormatter, org.jabref.logic.layout.LayoutFormatterBasedFormatter, org.jabref.logic.layout.format.LatexToUnicodeFormatter, org.jabref.logic.layout.format.ReplaceUnicodeLigaturesFormatter

The Formatter is used for a Filter design-pattern. Extending classes have to accept a String and returned a formatted version of it. Implementations have to reside in the logic package.

Example:

"John von Neumann" => "von Neumann, John"

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public boolean

Returns:

true if the object is a formatter with the same key
equals
(Object
the object to compare the formatter to
obj
)

Overrides java.lang.Object.equals.

Indicates whether some other object is the same formatter as this one based on the key.

public abstract String

Returns:

the formatted output String
format
(String
the input String
value
)

Formats a field value by with a particular formatter transformation.

public abstract String

Returns:

the description string, always non empty
getDescription
()

Returns a description of the formatter.

public abstract String

Returns:

the example input string, always non empty
getExampleInput
()

Returns an example input string of the formatter.

public abstract String

Returns:

the key of the formatter, always not null
getKey
()

Returns a unique key for the formatter that can be used for its identification

public abstract String

Returns:

the name of the formatter, always not null
getName
()

Returns a human readable name of the formatter usable for e.g. in the GUI

public int

Returns:

the hash of the key of the formatter
hashCode
()

Overrides java.lang.Object.hashCode.

Returns a default hashcode of the formatter based on its key.

Inherited from java.lang.Object:
clonefinalizegetClassnotifynotifyAlltoStringwaitwaitwait

Constructor Detail

Formatterback to summary
public Formatter()

Method Detail

equalsback to summary
public boolean equals(Object obj)

Overrides java.lang.Object.equals.

Indicates whether some other object is the same formatter as this one based on the key.

Parameters
obj:Object

the object to compare the formatter to

Returns:boolean

true if the object is a formatter with the same key

Annotations
@Override
formatback to summary
public abstract String format(String value)

Formats a field value by with a particular formatter transformation.

Calling this method with a null argument results in a NullPointerException.

Parameters
value:String

the input String

Returns:String

the formatted output String

getDescriptionback to summary
public abstract String getDescription()

Returns a description of the formatter.

Returns:String

the description string, always non empty

getExampleInputback to summary
public abstract String getExampleInput()

Returns an example input string of the formatter. This example is used as input to the formatter to demonstrate its functionality

Returns:String

the example input string, always non empty

getKeyback to summary
public abstract String getKey()

Returns a unique key for the formatter that can be used for its identification

Returns:String

the key of the formatter, always not null

getNameback to summary
public abstract String getName()

Returns a human readable name of the formatter usable for e.g. in the GUI

Returns:String

the name of the formatter, always not null

hashCodeback to summary
public int hashCode()

Overrides java.lang.Object.hashCode.

Returns a default hashcode of the formatter based on its key.

Returns:int

the hash of the key of the formatter

Annotations
@Override