public static enum Item.COLUMNS extends Enum<Item.COLUMNS>
Enum Constant and Description |
---|
currencyCode |
description |
invoiceNumber |
itemId |
name |
price |
quantity |
subtotalAmount |
taxAmount |
taxPercentage |
totalAmount |
unit |
Modifier and Type | Method and Description |
---|---|
static Item.COLUMNS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Item.COLUMNS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Item.COLUMNS itemId
public static final Item.COLUMNS name
public static final Item.COLUMNS unit
public static final Item.COLUMNS taxPercentage
public static final Item.COLUMNS quantity
public static final Item.COLUMNS price
public static final Item.COLUMNS currencyCode
public static final Item.COLUMNS taxAmount
public static final Item.COLUMNS subtotalAmount
public static final Item.COLUMNS totalAmount
public static final Item.COLUMNS description
public static final Item.COLUMNS invoiceNumber
public static Item.COLUMNS[] values()
for (Item.COLUMNS c : Item.COLUMNS.values()) System.out.println(c);
public static Item.COLUMNS 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 © 2011–2019 Plain Source. All rights reserved.