public enum UploadMode extends Enum<UploadMode>
| Enum Constant and Description |
|---|
DEFAULT
Dataset input for loading data by calculating based on its attributes.
|
DELETE_CENTER
Dataset input for deleting
|
FULL
Dataset input for loading in full mode (reload from scratch)
|
INCREMENTAL
Dataset input for loading data incrementally
|
| Modifier and Type | Method and Description |
|---|---|
static UploadMode |
get(String mode)
Lookup method.
|
String |
toString() |
static UploadMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UploadMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UploadMode FULL
public static final UploadMode INCREMENTAL
public static final UploadMode DEFAULT
public static final UploadMode DELETE_CENTER
public static UploadMode[] values()
for (UploadMode c : UploadMode.values()) System.out.println(c);
public static UploadMode 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 nullpublic static UploadMode get(String mode)
mode - a string value passed in the constructorpublic String toString()
toString in class Enum<UploadMode>Copyright © 2019. All rights reserved.