public static enum CopyMapper.Counter extends Enum<CopyMapper.Counter>
Enum Constant and Description |
---|
BYTESCOPIED |
BYTESEXPECTED |
BYTESFAILED |
BYTESSKIPPED |
COPY |
FAIL |
SKIP |
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 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 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 © 2013 Apache Software Foundation. All rights reserved.