public enum MaxChangesetSizeExceededPolicy extends java.lang.Enum<MaxChangesetSizeExceededPolicy>
Enum Constant and Description |
---|
ABORT
Abort uploading.
|
AUTOMATICALLY_OPEN_NEW_CHANGESETS
Automatically open as many new changesets as necessary to upload
the data.
|
FILL_ONE_CHANGESET_AND_RETURN_TO_UPLOAD_DIALOG
Fill one changeset.
|
Modifier and Type | Method and Description |
---|---|
static MaxChangesetSizeExceededPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaxChangesetSizeExceededPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaxChangesetSizeExceededPolicy ABORT
public static final MaxChangesetSizeExceededPolicy FILL_ONE_CHANGESET_AND_RETURN_TO_UPLOAD_DIALOG
public static final MaxChangesetSizeExceededPolicy AUTOMATICALLY_OPEN_NEW_CHANGESETS
public static MaxChangesetSizeExceededPolicy[] values()
for (MaxChangesetSizeExceededPolicy c : MaxChangesetSizeExceededPolicy.values()) System.out.println(c);
public static MaxChangesetSizeExceededPolicy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null