public static enum UpdateModelMessage.Command extends Enum<UpdateModelMessage.Command>
| Enum Constant and Description | 
|---|
| ABORTAborts model update. | 
| POST_UPDATEStarts post-update phase. | 
| PRE_UPDATEStarts pre-update phase. | 
| TRANSFORMStarts transformation. | 
| Modifier and Type | Method and Description | 
|---|---|
| static UpdateModelMessage.Command | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static UpdateModelMessage.Command[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final UpdateModelMessage.Command PRE_UPDATE
public static final UpdateModelMessage.Command TRANSFORM
public static final UpdateModelMessage.Command POST_UPDATE
public static final UpdateModelMessage.Command ABORT
public static UpdateModelMessage.Command[] values()
for (UpdateModelMessage.Command c : UpdateModelMessage.Command.values()) System.out.println(c);
public static UpdateModelMessage.Command 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.