Package net.sf.okapi.common.resource
Enum ExtendedCodeType
- java.lang.Object
-
- java.lang.Enum<ExtendedCodeType>
-
- net.sf.okapi.common.resource.ExtendedCodeType
-
- All Implemented Interfaces:
Serializable
,Comparable<ExtendedCodeType>
public enum ExtendedCodeType extends Enum<ExtendedCodeType>
Provides extended code types.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static ExtendedCodeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExtendedCodeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERAL
public static final ExtendedCodeType GENERAL
-
COLOR
public static final ExtendedCodeType COLOR
-
HIGHLIGHT
public static final ExtendedCodeType HIGHLIGHT
-
SHADOW
public static final ExtendedCodeType SHADOW
-
STRIKE_THROUGH
public static final ExtendedCodeType STRIKE_THROUGH
-
UNDERLINE
public static final ExtendedCodeType UNDERLINE
-
SUPERSCRIPT
public static final ExtendedCodeType SUPERSCRIPT
-
SUBSCRIPT
public static final ExtendedCodeType SUBSCRIPT
-
CAPS
public static final ExtendedCodeType CAPS
-
FONTS
public static final ExtendedCodeType FONTS
-
TABLE_REFERENCE
public static final ExtendedCodeType TABLE_REFERENCE
-
FOOTNOTE_REFERENCE
public static final ExtendedCodeType FOOTNOTE_REFERENCE
-
NOTE_REFERENCE
public static final ExtendedCodeType NOTE_REFERENCE
-
ALIGNMENT
public static final ExtendedCodeType ALIGNMENT
-
END_NESTED_STYLE
public static final ExtendedCodeType END_NESTED_STYLE
-
FOOTNOTE_MARKER
public static final ExtendedCodeType FOOTNOTE_MARKER
-
INDENT_HERE_TAB
public static final ExtendedCodeType INDENT_HERE_TAB
-
RIGHT_INDENT_TAB
public static final ExtendedCodeType RIGHT_INDENT_TAB
-
AUTO_PAGE_NUMBER
public static final ExtendedCodeType AUTO_PAGE_NUMBER
-
SECTION_MARKER
public static final ExtendedCodeType SECTION_MARKER
-
FIXED_WIDTH_NON_BREAKING_SPACE
public static final ExtendedCodeType FIXED_WIDTH_NON_BREAKING_SPACE
-
HAIR_SPACE
public static final ExtendedCodeType HAIR_SPACE
-
THIN_SPACE
public static final ExtendedCodeType THIN_SPACE
-
PUNCTUATION_SPACE
public static final ExtendedCodeType PUNCTUATION_SPACE
-
FIGURE_SPACE
public static final ExtendedCodeType FIGURE_SPACE
-
SIXTH_SPACE
public static final ExtendedCodeType SIXTH_SPACE
-
QUARTER_SPACE
public static final ExtendedCodeType QUARTER_SPACE
-
THIRD_SPACE
public static final ExtendedCodeType THIRD_SPACE
-
FLUSH_SPACE
public static final ExtendedCodeType FLUSH_SPACE
-
FORCED_LINE_BREAK
public static final ExtendedCodeType FORCED_LINE_BREAK
-
DISCRETIONARY_LINE_BRAKE
public static final ExtendedCodeType DISCRETIONARY_LINE_BRAKE
-
ZERO_WIDTH_NON_JOINER
public static final ExtendedCodeType ZERO_WIDTH_NON_JOINER
-
DISCRETIONARY_HYPHEN
public static final ExtendedCodeType DISCRETIONARY_HYPHEN
-
NON_BREAKING_HYPHEN
public static final ExtendedCodeType NON_BREAKING_HYPHEN
-
ZERO_WIDTH_NO_BREAK_SPACE
public static final ExtendedCodeType ZERO_WIDTH_NO_BREAK_SPACE
-
-
Method Detail
-
values
public static ExtendedCodeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExtendedCodeType c : ExtendedCodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExtendedCodeType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
-
-