Enum BpmnProcessFormat
- java.lang.Object
-
- java.lang.Enum<BpmnProcessFormat>
-
- org.apache.syncope.common.lib.types.BpmnProcessFormat
-
- All Implemented Interfaces:
Serializable
,Comparable<BpmnProcessFormat>
public enum BpmnProcessFormat extends Enum<BpmnProcessFormat>
Format for import / export of workflow definition.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.MediaType
getMediaType()
static BpmnProcessFormat
valueOf(String name)
Returns the enum constant of this type with the specified name.static BpmnProcessFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XML
public static final BpmnProcessFormat XML
-
JSON
public static final BpmnProcessFormat JSON
-
-
Method Detail
-
values
public static BpmnProcessFormat[] 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 (BpmnProcessFormat c : BpmnProcessFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BpmnProcessFormat valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getMediaType
public javax.ws.rs.core.MediaType getMediaType()
-
-