public enum CoinbaseRepeat extends Enum<CoinbaseRepeat>
Enum Constant and Description |
---|
DAILY |
EVERY_TWO_WEEKS |
MONTHLY |
NEVER |
QUARTERLY |
WEEKLY |
YEARLY |
Modifier and Type | Method and Description |
---|---|
static CoinbaseRepeat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoinbaseRepeat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoinbaseRepeat NEVER
public static final CoinbaseRepeat DAILY
public static final CoinbaseRepeat WEEKLY
public static final CoinbaseRepeat EVERY_TWO_WEEKS
public static final CoinbaseRepeat MONTHLY
public static final CoinbaseRepeat QUARTERLY
public static final CoinbaseRepeat YEARLY
public static CoinbaseRepeat[] values()
for (CoinbaseRepeat c : CoinbaseRepeat.values()) System.out.println(c);
public static CoinbaseRepeat 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 © 2012–2017 Xeiam, LLC. All rights reserved.