public static enum CopyMapper.Counter extends Enum<CopyMapper.Counter>
| Enum Constant and Description |
|---|
BANDWIDTH_IN_BYTES |
BYTESCOPIED |
BYTESEXPECTED |
BYTESFAILED |
BYTESSKIPPED |
COPY |
DIR_COPY |
FAIL |
SKIP |
SLEEP_TIME_MS |
| Modifier and Type | Method and Description |
|---|---|
static CopyMapper.Counter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CopyMapper.Counter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyMapper.Counter COPY
public static final CopyMapper.Counter DIR_COPY
public static final CopyMapper.Counter SKIP
public static final CopyMapper.Counter FAIL
public static final CopyMapper.Counter BYTESCOPIED
public static final CopyMapper.Counter BYTESEXPECTED
public static final CopyMapper.Counter BYTESFAILED
public static final CopyMapper.Counter BYTESSKIPPED
public static final CopyMapper.Counter SLEEP_TIME_MS
public static final CopyMapper.Counter BANDWIDTH_IN_BYTES
public static CopyMapper.Counter[] values()
for (CopyMapper.Counter c : CopyMapper.Counter.values()) System.out.println(c);
public static CopyMapper.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 © 2008–2020 Apache Software Foundation. All rights reserved.