Package net.officefloor.model.office
Enum OfficeSupplierModel.OfficeSupplierEvent
- java.lang.Object
-
- java.lang.Enum<OfficeSupplierModel.OfficeSupplierEvent>
-
- net.officefloor.model.office.OfficeSupplierModel.OfficeSupplierEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfficeSupplierModel.OfficeSupplierEvent>
- Enclosing class:
- OfficeSupplierModel
public static enum OfficeSupplierModel.OfficeSupplierEvent extends java.lang.Enum<OfficeSupplierModel.OfficeSupplierEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OfficeSupplierModel.OfficeSupplierEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfficeSupplierModel.OfficeSupplierEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_OFFICE_SUPPLIER_NAME
public static final OfficeSupplierModel.OfficeSupplierEvent CHANGE_OFFICE_SUPPLIER_NAME
-
CHANGE_SUPPLIER_SOURCE_CLASS_NAME
public static final OfficeSupplierModel.OfficeSupplierEvent CHANGE_SUPPLIER_SOURCE_CLASS_NAME
-
ADD_PROPERTY
public static final OfficeSupplierModel.OfficeSupplierEvent ADD_PROPERTY
-
REMOVE_PROPERTY
public static final OfficeSupplierModel.OfficeSupplierEvent REMOVE_PROPERTY
-
ADD_OFFICE_SUPPLIER_THREAD_LOCAL
public static final OfficeSupplierModel.OfficeSupplierEvent ADD_OFFICE_SUPPLIER_THREAD_LOCAL
-
REMOVE_OFFICE_SUPPLIER_THREAD_LOCAL
public static final OfficeSupplierModel.OfficeSupplierEvent REMOVE_OFFICE_SUPPLIER_THREAD_LOCAL
-
ADD_OFFICE_MANAGED_OBJECT_SOURCE
public static final OfficeSupplierModel.OfficeSupplierEvent ADD_OFFICE_MANAGED_OBJECT_SOURCE
-
REMOVE_OFFICE_MANAGED_OBJECT_SOURCE
public static final OfficeSupplierModel.OfficeSupplierEvent REMOVE_OFFICE_MANAGED_OBJECT_SOURCE
-
-
Method Detail
-
values
public static OfficeSupplierModel.OfficeSupplierEvent[] 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 (OfficeSupplierModel.OfficeSupplierEvent c : OfficeSupplierModel.OfficeSupplierEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfficeSupplierModel.OfficeSupplierEvent 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 namejava.lang.NullPointerException
- if the argument is null
-
-