Enum OfficeFloorSupplierModel.OfficeFloorSupplierEvent
- java.lang.Object
-
- java.lang.Enum<OfficeFloorSupplierModel.OfficeFloorSupplierEvent>
-
- net.officefloor.model.officefloor.OfficeFloorSupplierModel.OfficeFloorSupplierEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfficeFloorSupplierModel.OfficeFloorSupplierEvent>
- Enclosing class:
- OfficeFloorSupplierModel
public static enum OfficeFloorSupplierModel.OfficeFloorSupplierEvent extends java.lang.Enum<OfficeFloorSupplierModel.OfficeFloorSupplierEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
ADD_PROPERTY
CHANGE_OFFICE_FLOOR_SUPPLIER_NAME
CHANGE_SUPPLIER_SOURCE_CLASS_NAME
REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
REMOVE_PROPERTY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OfficeFloorSupplierModel.OfficeFloorSupplierEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfficeFloorSupplierModel.OfficeFloorSupplierEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_OFFICE_FLOOR_SUPPLIER_NAME
public static final OfficeFloorSupplierModel.OfficeFloorSupplierEvent CHANGE_OFFICE_FLOOR_SUPPLIER_NAME
-
CHANGE_SUPPLIER_SOURCE_CLASS_NAME
public static final OfficeFloorSupplierModel.OfficeFloorSupplierEvent CHANGE_SUPPLIER_SOURCE_CLASS_NAME
-
ADD_PROPERTY
public static final OfficeFloorSupplierModel.OfficeFloorSupplierEvent ADD_PROPERTY
-
REMOVE_PROPERTY
public static final OfficeFloorSupplierModel.OfficeFloorSupplierEvent REMOVE_PROPERTY
-
ADD_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
public static final OfficeFloorSupplierModel.OfficeFloorSupplierEvent ADD_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
-
REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
public static final OfficeFloorSupplierModel.OfficeFloorSupplierEvent REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
-
-
Method Detail
-
values
public static OfficeFloorSupplierModel.OfficeFloorSupplierEvent[] 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 (OfficeFloorSupplierModel.OfficeFloorSupplierEvent c : OfficeFloorSupplierModel.OfficeFloorSupplierEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfficeFloorSupplierModel.OfficeFloorSupplierEvent 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
-
-