Enum Type

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

    public enum Type
    extends java.lang.Enum<Type>
    • Enum Constant Detail

      • COLLECTOR

        public static final Type COLLECTOR
      • ROUTER

        public static final Type ROUTER
      • PEER

        public static final Type PEER
      • BASE_ATTRIBUTE

        public static final Type BASE_ATTRIBUTE
      • UNICAST_PREFIX

        public static final Type UNICAST_PREFIX
      • L3VPN

        public static final Type L3VPN
      • EVPN

        public static final Type EVPN
      • LS_LINK

        public static final Type LS_LINK
      • LS_NODE

        public static final Type LS_NODE
      • LS_PREFIX

        public static final Type LS_PREFIX
      • BMP_STAT

        public static final Type BMP_STAT
      • BMP_RAW

        public static final Type BMP_RAW
    • Method Detail

      • values

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

        public static Type 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
      • toString

        public abstract java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Type>
      • getTopic

        public abstract java.lang.String getTopic()