public enum Channel extends Enum<Channel>
| Enum Constant and Description |
|---|
_UNKNOWN |
APP_STORE |
PLAY_STORE |
WEB |
| Modifier and Type | Method and Description |
|---|---|
static Channel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Channel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Channel WEB
public static final Channel APP_STORE
public static final Channel PLAY_STORE
public static final Channel _UNKNOWN
public static Channel[] values()
for (Channel c : Channel.values()) System.out.println(c);
public static Channel 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 © 2023 ChargeBee. All rights reserved.