public enum NameConflictAction extends Enum<NameConflictAction>
FormGenerationService
, in case a form with same name
already exists in the repository, at the same location.Enum Constant and Description |
---|
CREATE_UNIQUE_FORM_NAME
Specifies an action item to create the form with an unique name.
|
FAIL
Specifies an action item to fail the form creation.
|
Modifier and Type | Method and Description |
---|---|
static NameConflictAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NameConflictAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NameConflictAction FAIL
public static final NameConflictAction CREATE_UNIQUE_FORM_NAME
public static NameConflictAction[] values()
for (NameConflictAction c : NameConflictAction.values()) System.out.println(c);
public static NameConflictAction 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 © 1982–2022 Adobe Systems Inc.. All rights reserved.