public enum RequestMethod extends Enum<RequestMethod>
| Enum Constant and Description |
|---|
BROADCAST_BLOCK |
BROADCAST_TRANSACTION |
BROADCAST_TRANSACTION_SYNCHRONOUS |
FIND_SMT_TOKENS_BY_NAME |
GET_ACCOUNT_COUNT |
GET_ACCOUNT_HISTORY
Get the full history of an account.
|
GET_ACCOUNTS |
GET_ACTIVE_SUPERNODES |
GET_BALANCE
Get balance of specific asset in account
|
GET_BLOCK |
GET_BLOCK_HEADER |
GET_CONFIG |
GET_DYNAMIC_GLOBAL_PROPERTIES |
GET_HARDFORK_VERSION |
GET_KEY_REFERENCES
Find accounts by their public key.
|
GET_NEXT_SCHEDULED_HARDFORK |
GET_OPS_IN_BLOCK
Get all operations in a block.
|
GET_POTENTIAL_SIGNATURES |
GET_REQUIRED_SIGNATURES |
GET_SUPERNODE_BY_ACCOUNT |
GET_SUPERNODE_COUNT |
GET_SUPERNODE_SCHEDULE |
GET_SUPERNODES |
GET_SUPERNODES_BY_VOTE |
GET_TRANSACTION
Get a transaction by its Id.
|
GET_TRANSACTION_HEX |
LOOKUP_ACCOUNTS |
LOOKUP_SUPERNODE_ACCOUNTS |
VERIFY_ACCOUNT_AUTHORITY |
VERIFY_AUTHORITY |
| Modifier and Type | Method and Description |
|---|---|
static RequestMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestMethod GET_KEY_REFERENCES
public static final RequestMethod GET_OPS_IN_BLOCK
public static final RequestMethod GET_TRANSACTION
public static final RequestMethod GET_ACCOUNT_HISTORY
public static final RequestMethod GET_BALANCE
public static final RequestMethod GET_BLOCK
public static final RequestMethod GET_BLOCK_HEADER
public static final RequestMethod GET_NEXT_SCHEDULED_HARDFORK
public static final RequestMethod GET_ACCOUNTS
public static final RequestMethod GET_ACCOUNT_COUNT
public static final RequestMethod GET_SUPERNODE_BY_ACCOUNT
public static final RequestMethod LOOKUP_SUPERNODE_ACCOUNTS
public static final RequestMethod LOOKUP_ACCOUNTS
public static final RequestMethod GET_SUPERNODES
public static final RequestMethod GET_SUPERNODE_COUNT
public static final RequestMethod GET_SUPERNODES_BY_VOTE
public static final RequestMethod GET_HARDFORK_VERSION
public static final RequestMethod GET_CONFIG
public static final RequestMethod GET_DYNAMIC_GLOBAL_PROPERTIES
public static final RequestMethod GET_SUPERNODE_SCHEDULE
public static final RequestMethod GET_ACTIVE_SUPERNODES
public static final RequestMethod FIND_SMT_TOKENS_BY_NAME
public static final RequestMethod GET_TRANSACTION_HEX
public static final RequestMethod GET_REQUIRED_SIGNATURES
public static final RequestMethod GET_POTENTIAL_SIGNATURES
public static final RequestMethod VERIFY_AUTHORITY
public static final RequestMethod VERIFY_ACCOUNT_AUTHORITY
public static final RequestMethod BROADCAST_TRANSACTION
public static final RequestMethod BROADCAST_TRANSACTION_SYNCHRONOUS
public static final RequestMethod BROADCAST_BLOCK
public static RequestMethod[] values()
for (RequestMethod c : RequestMethod.values()) System.out.println(c);
public static RequestMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.