public enum ITSIssueType extends Enum<ITSIssueType>
Modifier and Type | Method and Description |
---|---|
static ITSIssueType |
getIssueType(String name) |
String |
toString()
Use this to get the name as it is used in the ITS 2.0 standard
(namely lowercase and with hyphens, not camel case)
|
static ITSIssueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ITSIssueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ITSIssueType Terminology
public static final ITSIssueType Mistranslation
public static final ITSIssueType Omission
public static final ITSIssueType Untranslated
public static final ITSIssueType Addition
public static final ITSIssueType Duplication
public static final ITSIssueType Inconsistency
public static final ITSIssueType Grammar
public static final ITSIssueType Legal
public static final ITSIssueType Register
public static final ITSIssueType LocaleSpecificContent
public static final ITSIssueType LocaleViolation
public static final ITSIssueType Style
public static final ITSIssueType Characters
public static final ITSIssueType Misspelling
public static final ITSIssueType Typographical
public static final ITSIssueType Formatting
public static final ITSIssueType InconsistentEntities
public static final ITSIssueType Numbers
public static final ITSIssueType Markup
public static final ITSIssueType PatternProblem
public static final ITSIssueType Whitespace
public static final ITSIssueType Internationalization
public static final ITSIssueType Length
public static final ITSIssueType NonConformance
public static final ITSIssueType Uncategorized
public static final ITSIssueType Other
public static ITSIssueType[] values()
for (ITSIssueType c : ITSIssueType.values()) System.out.println(c);
public static ITSIssueType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ITSIssueType getIssueType(String name)
public String toString()
toString
in class Enum<ITSIssueType>