Package nxt.peer

Enum Peers.Event

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Peers.Event>
    Enclosing class:
    Peers

    public static enum Peers.Event
    extends java.lang.Enum<Peers.Event>
    • Enum Constant Detail

      • UNBLACKLIST

        public static final Peers.Event UNBLACKLIST
      • DEACTIVATE

        public static final Peers.Event DEACTIVATE
      • DOWNLOADED_VOLUME

        public static final Peers.Event DOWNLOADED_VOLUME
      • UPLOADED_VOLUME

        public static final Peers.Event UPLOADED_VOLUME
      • ADDED_ACTIVE_PEER

        public static final Peers.Event ADDED_ACTIVE_PEER
      • CHANGED_ACTIVE_PEER

        public static final Peers.Event CHANGED_ACTIVE_PEER
      • ADD_INBOUND

        public static final Peers.Event ADD_INBOUND
      • REMOVE_INBOUND

        public static final Peers.Event REMOVE_INBOUND
      • CHANGED_SERVICES

        public static final Peers.Event CHANGED_SERVICES
    • Method Detail

      • values

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

        public static Peers.Event 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