@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum AccessorNetworkType extends Enum<AccessorNetworkType>
Enum Constant and Description |
---|
ETHEREUM_GOERLI |
ETHEREUM_MAINNET |
ETHEREUM_MAINNET_AND_GOERLI |
POLYGON_MAINNET |
POLYGON_MUMBAI |
Modifier and Type | Method and Description |
---|---|
static AccessorNetworkType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static AccessorNetworkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessorNetworkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessorNetworkType ETHEREUM_GOERLI
public static final AccessorNetworkType ETHEREUM_MAINNET
public static final AccessorNetworkType ETHEREUM_MAINNET_AND_GOERLI
public static final AccessorNetworkType POLYGON_MAINNET
public static final AccessorNetworkType POLYGON_MUMBAI
public static AccessorNetworkType[] values()
for (AccessorNetworkType c : AccessorNetworkType.values()) System.out.println(c);
public static AccessorNetworkType 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 nullpublic String toString()
toString
in class Enum<AccessorNetworkType>
public static AccessorNetworkType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.