Enum Symbol

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Symbol>

    public enum Symbol
    extends java.lang.Enum<Symbol>
    Represents the column symbols.
    See Also:
    Symbols Help
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ARROWS_3_WAY
      Represents the ARROWS_3_WAY symbol.
      ARROWS_4_WAY
      Represents the ARROWS_4_WAY symbol.
      ARROWS_5_WAY
      Represents the ARROWS_5_WAY symbol.
      DECISION_SHAPES
      Represents the DECISION_SHAPES symbol.
      DECISION_SYMBOLS
      Represents the DECISION_SYMBOLS symbol.
      DIRECTIONS_3_WAY
      Represents the DIRECTIONS_3_WAY symbol.
      DIRECTIONS_4_WAY
      Represents the DIRECTIONS_4_WAY symbol.
      EFFORT
      Represents the EFFORT symbol.
      FLAG
      Represents the FLAG symbol.
      HARVEY_BALLS
      Represents the HARVEY_BALLS symbol.
      HEARTS
      Represents the HEARTS symbol.
      MONEY
      Represents the MONEY symbol.
      PAIN
      Represents the PAIN symbol.
      PRIORITY
      Represents the PRIORITY symbol.
      PRIORITY_HML
      Represents the PRIORITY_HML symbol.
      PROGRESS
      Represents the PROGRESS symbol.
      RYG
      Represents the RYG symbol.
      RYGB
      Represents the RYGB symbol.
      RYGG
      Represents the RYGG symbol.
      SIGNAL
      Represents the SIGNAL symbol.
      SKI
      Represents the SKI symbol.
      STAR
      Represents the STAR symbol.
      STAR_RATING
      Represents the STAR_RATING symbol.
      VCR
      Represents the VCR symbol.
      WEATHER
      Represents the WEATHER symbol.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static Symbol valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Symbol[] 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, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • FLAG

        public static final Symbol FLAG
        Represents the FLAG symbol.
      • STAR

        public static final Symbol STAR
        Represents the STAR symbol.
      • HARVEY_BALLS

        public static final Symbol HARVEY_BALLS
        Represents the HARVEY_BALLS symbol.
      • PRIORITY

        public static final Symbol PRIORITY
        Represents the PRIORITY symbol.
      • RYG

        public static final Symbol RYG
        Represents the RYG symbol.
      • PRIORITY_HML

        public static final Symbol PRIORITY_HML
        Represents the PRIORITY_HML symbol.
      • DECISION_SYMBOLS

        public static final Symbol DECISION_SYMBOLS
        Represents the DECISION_SYMBOLS symbol.
      • DECISION_SHAPES

        public static final Symbol DECISION_SHAPES
        Represents the DECISION_SHAPES symbol.
      • VCR

        public static final Symbol VCR
        Represents the VCR symbol.
      • RYGB

        public static final Symbol RYGB
        Represents the RYGB symbol.
      • RYGG

        public static final Symbol RYGG
        Represents the RYGG symbol.
      • WEATHER

        public static final Symbol WEATHER
        Represents the WEATHER symbol.
      • PROGRESS

        public static final Symbol PROGRESS
        Represents the PROGRESS symbol.
      • ARROWS_3_WAY

        public static final Symbol ARROWS_3_WAY
        Represents the ARROWS_3_WAY symbol.
      • ARROWS_4_WAY

        public static final Symbol ARROWS_4_WAY
        Represents the ARROWS_4_WAY symbol.
      • ARROWS_5_WAY

        public static final Symbol ARROWS_5_WAY
        Represents the ARROWS_5_WAY symbol.
      • DIRECTIONS_3_WAY

        public static final Symbol DIRECTIONS_3_WAY
        Represents the DIRECTIONS_3_WAY symbol.
      • DIRECTIONS_4_WAY

        public static final Symbol DIRECTIONS_4_WAY
        Represents the DIRECTIONS_4_WAY symbol.
      • SKI

        public static final Symbol SKI
        Represents the SKI symbol.
      • SIGNAL

        public static final Symbol SIGNAL
        Represents the SIGNAL symbol.
      • STAR_RATING

        public static final Symbol STAR_RATING
        Represents the STAR_RATING symbol.
      • HEARTS

        public static final Symbol HEARTS
        Represents the HEARTS symbol.
      • MONEY

        public static final Symbol MONEY
        Represents the MONEY symbol.
      • EFFORT

        public static final Symbol EFFORT
        Represents the EFFORT symbol.
      • PAIN

        public static final Symbol PAIN
        Represents the PAIN symbol.
    • Method Detail

      • values

        public static Symbol[] 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 (Symbol c : Symbol.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Symbol 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