Enum WebNodeType

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

    public enum WebNodeType
    extends java.lang.Enum<WebNodeType>
    Created with IntelliJ IDEA.
    Since:
    : 1/21/2015 Time : 1:09 PM
    • Enum Constant Detail

      • BASIC_NODE

        public static final WebNodeType BASIC_NODE
      • ENTRANCE_NODE

        public static final WebNodeType ENTRANCE_NODE
      • AGILITY_NODE

        public static final WebNodeType AGILITY_NODE
      • CHARTER_NODE

        public static final WebNodeType CHARTER_NODE
      • SPIRIT_TREE_NODE

        public static final WebNodeType SPIRIT_TREE_NODE
      • FAIRY_RING_NODE

        public static final WebNodeType FAIRY_RING_NODE
      • TELEPORT_NODE

        public static final WebNodeType TELEPORT_NODE
      • MAGIC_CARPET_NODE

        public static final WebNodeType MAGIC_CARPET_NODE
      • MOUNTAIN_GUIDE_NODE

        public static final WebNodeType MOUNTAIN_GUIDE_NODE
    • Method Detail

      • values

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

        public static WebNodeType 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
      • getId

        public int getId()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<WebNodeType>