public enum PisPaymentType extends Enum<PisPaymentType>
| Modifier and Type | Method and Description |
|---|---|
static Optional<PisPaymentType> |
getByValue(String value) |
String |
getValue() |
static PisPaymentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PisPaymentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PisPaymentType BULK
public static final PisPaymentType PERIODIC
public static final PisPaymentType SINGLE
public static PisPaymentType[] values()
for (PisPaymentType c : PisPaymentType.values()) System.out.println(c);
public static PisPaymentType 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 getValue()
public static Optional<PisPaymentType> getByValue(String value)
Copyright © 2019. All rights reserved.