java.lang.Object
java.lang.Enum<MapIconType>
org.geysermc.mcprotocollib.protocol.data.game.level.map.MapIconType
All Implemented Interfaces:
Serializable, Comparable<MapIconType>, Constable

public enum MapIconType extends Enum<MapIconType>
  • Enum Constant Details

    • WHITE_ARROW

      public static final MapIconType WHITE_ARROW
    • GREEN_ARROW

      public static final MapIconType GREEN_ARROW
    • RED_ARROW

      public static final MapIconType RED_ARROW
    • BLUE_ARROW

      public static final MapIconType BLUE_ARROW
    • WHITE_CROSS

      public static final MapIconType WHITE_CROSS
    • RED_POINTER

      public static final MapIconType RED_POINTER
    • WHITE_CIRCLE

      public static final MapIconType WHITE_CIRCLE
    • SMALL_WHITE_CIRCLE

      public static final MapIconType SMALL_WHITE_CIRCLE
    • MANSION

      public static final MapIconType MANSION
    • TEMPLE

      public static final MapIconType TEMPLE
    • WHITE_BANNER

      public static final MapIconType WHITE_BANNER
    • ORANGE_BANNER

      public static final MapIconType ORANGE_BANNER
    • MAGENTA_BANNER

      public static final MapIconType MAGENTA_BANNER
    • LIGHT_BLUE_BANNER

      public static final MapIconType LIGHT_BLUE_BANNER
    • YELLOW_BANNER

      public static final MapIconType YELLOW_BANNER
    • LIME_BANNER

      public static final MapIconType LIME_BANNER
    • PINK_BANNER

      public static final MapIconType PINK_BANNER
    • GRAY_BANNER

      public static final MapIconType GRAY_BANNER
    • LIGHT_GRAY_BANNER

      public static final MapIconType LIGHT_GRAY_BANNER
    • CYAN_BANNER

      public static final MapIconType CYAN_BANNER
    • PURPLE_BANNER

      public static final MapIconType PURPLE_BANNER
    • BLUE_BANNER

      public static final MapIconType BLUE_BANNER
    • BROWN_BANNER

      public static final MapIconType BROWN_BANNER
    • GREEN_BANNER

      public static final MapIconType GREEN_BANNER
    • RED_BANNER

      public static final MapIconType RED_BANNER
    • BLACK_BANNER

      public static final MapIconType BLACK_BANNER
    • TREASURE_MARKER

      public static final MapIconType TREASURE_MARKER
    • DESERT_VILLAGE

      public static final MapIconType DESERT_VILLAGE
    • PLAINS_VILLAGE

      public static final MapIconType PLAINS_VILLAGE
    • SAVANNA_VILLAGE

      public static final MapIconType SAVANNA_VILLAGE
    • SNOWY_VILLAGE

      public static final MapIconType SNOWY_VILLAGE
    • TAIGA_VILLAGE

      public static final MapIconType TAIGA_VILLAGE
    • JUNGLE_TEMPLE

      public static final MapIconType JUNGLE_TEMPLE
    • SWAMP_HUT

      public static final MapIconType SWAMP_HUT
    • TRIAL_CHAMBERS

      public static final MapIconType TRIAL_CHAMBERS
  • Method Details

    • values

      public static MapIconType[] 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 MapIconType 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
    • from

      public static MapIconType from(int id)