@Status(stage=PRODUCTION, unitTests=NOT_APPLICABLE) @Review(by="Kees Schotanus", at="2009-09-24") public enum PaymentMoment extends Enum<PaymentMoment>
Enum Constant and Description |
---|
BEGINNING
Payment at the beginning of the period.
|
END
Payment at the end of the period.
|
Modifier and Type | Method and Description |
---|---|
static PaymentMoment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMoment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentMoment BEGINNING
public static final PaymentMoment END
public static PaymentMoment[] values()
for (PaymentMoment c : PaymentMoment.values()) System.out.println(c);
public static PaymentMoment 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 © 2008–2018. All rights reserved.