public static enum SweepJob.SweepCounter extends java.lang.Enum<SweepJob.SweepCounter>
| Enum Constant and Description |
|---|
FILE_AFTER_MERGE_OR_CLEAN
How many files are left after merging.
|
FILE_TO_BE_MERGE_OR_CLEAN
How many files need to be merged or cleaned.
|
INPUT_FILE_COUNT
How many files are read.
|
RECORDS_UPDATED
How many records are updated.
|
| Modifier and Type | Method and Description |
|---|---|
static SweepJob.SweepCounter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SweepJob.SweepCounter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SweepJob.SweepCounter INPUT_FILE_COUNT
public static final SweepJob.SweepCounter FILE_TO_BE_MERGE_OR_CLEAN
public static final SweepJob.SweepCounter FILE_AFTER_MERGE_OR_CLEAN
public static final SweepJob.SweepCounter RECORDS_UPDATED
public static SweepJob.SweepCounter[] values()
for (SweepJob.SweepCounter c : SweepJob.SweepCounter.values()) System.out.println(c);
public static SweepJob.SweepCounter 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