Package org.refcodes.data
Enum Text
- java.lang.Object
-
- java.lang.Enum<Text>
-
- org.refcodes.data.Text
-
- All Implemented Interfaces:
org.refcodes.mixin.TextAccessor
public enum Text extends java.lang.Enum<Text> implements org.refcodes.mixin.TextAccessor
Commonly used text blocks in the code.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARECIBO_MESSAGESee "https://en.wikipedia.org/wiki/Arecibo_message"ILLEGAL_STATELICENSENOT_YET_IMPLEMENTEDNULL_VALUEREFCODES_ORGUNSUPPORTED_OPERATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetText()java.lang.StringtoString()java.lang.String[]toStrings()Returns the text block representation of this element.static TextvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Text[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REFCODES_ORG
public static final Text REFCODES_ORG
-
UNSUPPORTED_OPERATION
public static final Text UNSUPPORTED_OPERATION
-
ILLEGAL_STATE
public static final Text ILLEGAL_STATE
-
NOT_YET_IMPLEMENTED
public static final Text NOT_YET_IMPLEMENTED
-
NULL_VALUE
public static final Text NULL_VALUE
-
LICENSE
public static final Text LICENSE
-
ARECIBO_MESSAGE
public static final Text ARECIBO_MESSAGE
See "https://en.wikipedia.org/wiki/Arecibo_message"
-
-
Method Detail
-
values
public static Text[] 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 (Text c : Text.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Text valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getText
public java.lang.String getText()
- Specified by:
getTextin interfaceorg.refcodes.mixin.TextAccessor
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Text>
-
toStrings
public java.lang.String[] toStrings()
Returns the text block representation of this element.- Returns:
- The text block representation.
-
-