public enum RateVisibility extends java.lang.Enum<RateVisibility>
| Enum Constant and Description |
|---|
ALL
Always show
|
NOT
Don't show/use rates at all
|
PARAM
Show according to RateParameters.showToUser setting (even in case of unlimited accounts).
|
PARAM_NO_UNLIMITED
Show according to RateParameters.showToUser setting, but never show in case of unlimited accounts
|
| Modifier and Type | Method and Description |
|---|---|
static RateVisibility |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RateVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RateVisibility NOT
public static final RateVisibility PARAM_NO_UNLIMITED
public static final RateVisibility PARAM
public static final RateVisibility ALL
public static RateVisibility[] values()
for (RateVisibility c : RateVisibility.values()) System.out.println(c);
public static RateVisibility valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null