Package org.projectlombok.test
Enum AnotherDataExample.Coin
- java.lang.Object
-
- java.lang.Enum<AnotherDataExample.Coin>
-
- org.projectlombok.test.AnotherDataExample.Coin
-
- All Implemented Interfaces:
Serializable
,Comparable<AnotherDataExample.Coin>
- Enclosing class:
- AnotherDataExample
public static enum AnotherDataExample.Coin extends Enum<AnotherDataExample.Coin>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCents()
static AnotherDataExample.Coin
valueOf(String name)
Returns the enum constant of this type with the specified name.static AnotherDataExample.Coin[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PENNY
public static final AnotherDataExample.Coin PENNY
-
NICKEL
public static final AnotherDataExample.Coin NICKEL
-
DIME
public static final AnotherDataExample.Coin DIME
-
QUARTER
public static final AnotherDataExample.Coin QUARTER
-
-
Method Detail
-
values
public static AnotherDataExample.Coin[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AnotherDataExample.Coin c : AnotherDataExample.Coin.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnotherDataExample.Coin valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getCents
public int getCents()
-
-