public enum RefundChannel extends Enum<RefundChannel>
| Modifier and Type | Method and Description |
|---|---|
static RefundChannel |
from(String t) |
String |
type() |
static RefundChannel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RefundChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefundChannel ORIGINAL
public static final RefundChannel BALANCE
public static RefundChannel[] values()
for (RefundChannel c : RefundChannel.values()) System.out.println(c);
public static RefundChannel 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 type()
public static RefundChannel from(String t)
Copyright © 2016. All rights reserved.