Package nxt.http

Enum APITag

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

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

      • ACCOUNTS

        public static final APITag ACCOUNTS
      • ACCOUNT_CONTROL

        public static final APITag ACCOUNT_CONTROL
      • ALIASES

        public static final APITag ALIASES
      • AE

        public static final APITag AE
      • BLOCKS

        public static final APITag BLOCKS
      • CREATE_TRANSACTION

        public static final APITag CREATE_TRANSACTION
      • DGS

        public static final APITag DGS
      • FORGING

        public static final APITag FORGING
      • MESSAGES

        public static final APITag MESSAGES
      • MS

        public static final APITag MS
      • NETWORK

        public static final APITag NETWORK
      • PHASING

        public static final APITag PHASING
      • SEARCH

        public static final APITag SEARCH
      • INFO

        public static final APITag INFO
      • SHUFFLING

        public static final APITag SHUFFLING
      • DATA

        public static final APITag DATA
      • TOKENS

        public static final APITag TOKENS
      • TRANSACTIONS

        public static final APITag TRANSACTIONS
      • VS

        public static final APITag VS
      • UTILS

        public static final APITag UTILS
      • DEBUG

        public static final APITag DEBUG
      • ADDONS

        public static final APITag ADDONS
    • Method Detail

      • values

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

        public static APITag 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
      • fromDisplayName

        public static APITag fromDisplayName​(java.lang.String displayName)
      • getDisplayName

        public java.lang.String getDisplayName()
      • toString

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