Enum EFlowchartToBpmnConverterSettingsPreset
- java.lang.Object
-
- java.lang.Enum<EFlowchartToBpmnConverterSettingsPreset>
-
- de.xima.fc.workflow.converter.bpmn.EFlowchartToBpmnConverterSettingsPreset
-
- All Implemented Interfaces:
Serializable
,Comparable<EFlowchartToBpmnConverterSettingsPreset>
public enum EFlowchartToBpmnConverterSettingsPreset extends Enum<EFlowchartToBpmnConverterSettingsPreset>
Presets for theFlowchartToBpmnConverterSettings
andWorkflowBpmnLayoutSettings
.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
applyConverterSettings(FlowchartToBpmnConverterSettings.Builder builder)
void
applyLayoutSettings(WorkflowBpmnLayoutSettings.Builder builder)
abstract void
applyOptionalConverterSettings(FlowchartToBpmnConverterSettings.Builder builder)
abstract void
applyOptionalLayoutSettings(WorkflowBpmnLayoutSettings.Builder builder)
abstract void
applyRequiredConverterSettings(FlowchartToBpmnConverterSettings.Builder builder)
abstract void
applyRequiredLayoutSettings(WorkflowBpmnLayoutSettings.Builder builder)
static EFlowchartToBpmnConverterSettingsPreset
valueOf(String name)
Returns the enum constant of this type with the specified name.static EFlowchartToBpmnConverterSettingsPreset[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD
public static final EFlowchartToBpmnConverterSettingsPreset STANDARD
The preset "STANDARD".
-
ADN
public static final EFlowchartToBpmnConverterSettingsPreset ADN
-
ARS
public static final EFlowchartToBpmnConverterSettingsPreset ARS
The preset "ARS".
-
BIC
public static final EFlowchartToBpmnConverterSettingsPreset BIC
The preset "BIC".
-
BIZ
public static final EFlowchartToBpmnConverterSettingsPreset BIZ
The preset "BIZ".
-
BVIS
public static final EFlowchartToBpmnConverterSettingsPreset BVIS
The preset "BVIS".
-
CMD
public static final EFlowchartToBpmnConverterSettingsPreset CMD
The preset "CMD".
-
FLW
public static final EFlowchartToBpmnConverterSettingsPreset FLW
The preset "FLW".
-
JBPM
public static final EFlowchartToBpmnConverterSettingsPreset JBPM
The preset "JBPM".
-
TRS
public static final EFlowchartToBpmnConverterSettingsPreset TRS
The preset "TRS".
-
YQ
public static final EFlowchartToBpmnConverterSettingsPreset YQ
The preset "YQ".
-
-
Method Detail
-
values
public static EFlowchartToBpmnConverterSettingsPreset[] 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 (EFlowchartToBpmnConverterSettingsPreset c : EFlowchartToBpmnConverterSettingsPreset.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EFlowchartToBpmnConverterSettingsPreset 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
-
applyConverterSettings
public final void applyConverterSettings(FlowchartToBpmnConverterSettings.Builder builder)
-
applyLayoutSettings
public final void applyLayoutSettings(WorkflowBpmnLayoutSettings.Builder builder)
-
applyOptionalConverterSettings
public abstract void applyOptionalConverterSettings(FlowchartToBpmnConverterSettings.Builder builder)
-
applyOptionalLayoutSettings
public abstract void applyOptionalLayoutSettings(WorkflowBpmnLayoutSettings.Builder builder)
-
applyRequiredConverterSettings
public abstract void applyRequiredConverterSettings(FlowchartToBpmnConverterSettings.Builder builder)
-
applyRequiredLayoutSettings
public abstract void applyRequiredLayoutSettings(WorkflowBpmnLayoutSettings.Builder builder)
-
-