Enum Class ColorType

java.lang.Object
java.lang.Enum<ColorType>
org.ka2ddo.yaac.osm.ColorType
All Implemented Interfaces:
Serializable, Comparable<ColorType>, Constable

public enum ColorType extends Enum<ColorType>
Enumerate the default colors and textured patterns used to render OSM.
Author:
Andrew Pavlin, KA2DDO
  • Enum Constant Details

    • BLACK

      public static final ColorType BLACK
    • TAN

      public static final ColorType TAN
    • LIGHT_BLUE

      public static final ColorType LIGHT_BLUE
    • DARK_BLUE

      public static final ColorType DARK_BLUE
    • RED

      public static final ColorType RED
    • RED_ORANGE

      public static final ColorType RED_ORANGE
    • DARK_GREY

      public static final ColorType DARK_GREY
    • TRANSLUCENT_DARK_GREY

      public static final ColorType TRANSLUCENT_DARK_GREY
    • MED_GREY

      public static final ColorType MED_GREY
    • TRANSLUCENT_MED_GREY

      public static final ColorType TRANSLUCENT_MED_GREY
    • SEMI_TRANSLUCENT_GREY

      public static final ColorType SEMI_TRANSLUCENT_GREY
    • TRANSPARENT_GREY

      public static final ColorType TRANSPARENT_GREY
    • LIGHT_GREY

      public static final ColorType LIGHT_GREY
    • BROWN

      public static final ColorType BROWN
    • TRANSLUCENT_BROWN

      public static final ColorType TRANSLUCENT_BROWN
    • TRANSLUCENT_YELLOW

      public static final ColorType TRANSLUCENT_YELLOW
    • CYAN

      public static final ColorType CYAN
    • DARK_CYAN

      public static final ColorType DARK_CYAN
    • BRIGHT_CYAN

      public static final ColorType BRIGHT_CYAN
    • GREEN

      public static final ColorType GREEN
    • DARK_GREEN

      public static final ColorType DARK_GREEN
    • CHECKED_LIGHT_BLUE

      public static final ColorType CHECKED_LIGHT_BLUE
    • CHECKED_GREEN

      public static final ColorType CHECKED_GREEN
    • CHECKED_PURPLE

      public static final ColorType CHECKED_PURPLE
    • WETLAND_TEXTURE

      public static final ColorType WETLAND_TEXTURE
    • CHECKED_GREY

      public static final ColorType CHECKED_GREY
  • Method Details

    • values

      public static ColorType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ColorType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null