public static enum CreditCard.Debit extends Enum<CreditCard.Debit>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static CreditCard.Debit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreditCard.Debit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreditCard.Debit YES
public static final CreditCard.Debit NO
public static final CreditCard.Debit UNKNOWN
private final String value
public static CreditCard.Debit[] values()
for (CreditCard.Debit c : CreditCard.Debit.values()) System.out.println(c);
public static CreditCard.Debit 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 toString()
toString
in class Enum<CreditCard.Debit>
Copyright © 2013-2018. All Rights Reserved.