Enum 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.
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.refcodes.mixin.TextAccessor

        org.refcodes.mixin.TextAccessor.TextBuilder<B extends org.refcodes.mixin.TextAccessor.TextBuilder<B>>, org.refcodes.mixin.TextAccessor.TextMutator, org.refcodes.mixin.TextAccessor.TextProperty
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getText​()
      java.lang.String toString​()
      java.lang.String[] toStrings​()
      Returns the text block representation of this element.
      static Text valueOf​(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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 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 name
        java.lang.NullPointerException - if the argument is null
      • getText

        public java.lang.String getText​()
        Specified by:
        getText in interface org.refcodes.mixin.TextAccessor
      • toString

        public java.lang.String toString​()
        Overrides:
        toString in class java.lang.Enum<Text>
      • toStrings

        public java.lang.String[] toStrings​()
        Returns the text block representation of this element.
        Returns:
        The text block representation.