public static enum ExportSnapshot.Counter extends Enum<ExportSnapshot.Counter>
Enum Constant and Description |
---|
BYTES_COPIED |
BYTES_EXPECTED |
BYTES_SKIPPED |
COPY_FAILED |
FILES_COPIED |
FILES_SKIPPED |
MISSING_FILES |
Modifier and Type | Method and Description |
---|---|
static ExportSnapshot.Counter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportSnapshot.Counter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportSnapshot.Counter MISSING_FILES
public static final ExportSnapshot.Counter FILES_COPIED
public static final ExportSnapshot.Counter FILES_SKIPPED
public static final ExportSnapshot.Counter COPY_FAILED
public static final ExportSnapshot.Counter BYTES_EXPECTED
public static final ExportSnapshot.Counter BYTES_SKIPPED
public static final ExportSnapshot.Counter BYTES_COPIED
public static ExportSnapshot.Counter[] values()
for (ExportSnapshot.Counter c : ExportSnapshot.Counter.values()) System.out.println(c);
public static ExportSnapshot.Counter 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 © 2007–2020 The Apache Software Foundation. All rights reserved.