Package com.flagright.api.types
Enum WalletNetwork
- java.lang.Object
-
- java.lang.Enum<WalletNetwork>
-
- com.flagright.api.types.WalletNetwork
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WalletNetwork>
public enum WalletNetwork extends java.lang.Enum<WalletNetwork>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALGORANDARBITRUM_L_2AVALANCHE_C_CHAINBITCOINBITCOIN_CASHBNB_BEACON_CHAINBNB_SMART_CHAINCARDANOCELESTIACOSMOSDOGECOINEOS_PUBLICETHEREUMFANTOMHEDERALITECOINNEAR_PROTOCOLOPTIMISM_MAINNETPOLKADOTPOLYGONRIPPLESOLANASTELLARTEZOSTRONVICTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static WalletNetworkvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WalletNetwork[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BITCOIN
public static final WalletNetwork BITCOIN
-
ETHEREUM
public static final WalletNetwork ETHEREUM
-
POLYGON
public static final WalletNetwork POLYGON
-
BNB_SMART_CHAIN
public static final WalletNetwork BNB_SMART_CHAIN
-
BNB_BEACON_CHAIN
public static final WalletNetwork BNB_BEACON_CHAIN
-
ARBITRUM_L_2
public static final WalletNetwork ARBITRUM_L_2
-
SOLANA
public static final WalletNetwork SOLANA
-
AVALANCHE_C_CHAIN
public static final WalletNetwork AVALANCHE_C_CHAIN
-
TEZOS
public static final WalletNetwork TEZOS
-
VICTION
public static final WalletNetwork VICTION
-
LITECOIN
public static final WalletNetwork LITECOIN
-
BITCOIN_CASH
public static final WalletNetwork BITCOIN_CASH
-
RIPPLE
public static final WalletNetwork RIPPLE
-
STELLAR
public static final WalletNetwork STELLAR
-
EOS_PUBLIC
public static final WalletNetwork EOS_PUBLIC
-
TRON
public static final WalletNetwork TRON
-
CARDANO
public static final WalletNetwork CARDANO
-
POLKADOT
public static final WalletNetwork POLKADOT
-
NEAR_PROTOCOL
public static final WalletNetwork NEAR_PROTOCOL
-
COSMOS
public static final WalletNetwork COSMOS
-
DOGECOIN
public static final WalletNetwork DOGECOIN
-
OPTIMISM_MAINNET
public static final WalletNetwork OPTIMISM_MAINNET
-
FANTOM
public static final WalletNetwork FANTOM
-
HEDERA
public static final WalletNetwork HEDERA
-
ALGORAND
public static final WalletNetwork ALGORAND
-
CELESTIA
public static final WalletNetwork CELESTIA
-
-
Method Detail
-
values
public static WalletNetwork[] 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 (WalletNetwork c : WalletNetwork.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WalletNetwork 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 namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<WalletNetwork>
-
-