org.torweg.pulse.component.shop.admin
Enum ShopAdminErrors
java.lang.Object
java.lang.Enum<ShopAdminErrors>
org.torweg.pulse.component.shop.admin.ShopAdminErrors
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ShopAdminErrors>
public enum ShopAdminErrors
- extends java.lang.Enum<ShopAdminErrors>
Provides error-codes for the pulse website-administration of the Shop-
Bundle.
- Version:
- $Revision: 1480 $
- Author:
- Daniel Dietz
|
Method Summary |
static ShopAdminErrors |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ShopAdminErrors[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
CANNOT_DELETE_TAXGROUP_ASSOCIATED_WITH_PRICES
public static final ShopAdminErrors CANNOT_DELETE_TAXGROUP_ASSOCIATED_WITH_PRICES
- Error on
TaxGroup-deletion, that occurs if the
TaxGroup is associated with any Prices.
values
public static final ShopAdminErrors[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ShopAdminErrors c : ShopAdminErrors.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ShopAdminErrors valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name