org.apache.cxf.management.web.logging.atom.converter
Enum StandardConverter.Multiplicity
java.lang.Object
java.lang.Enum<StandardConverter.Multiplicity>
org.apache.cxf.management.web.logging.atom.converter.StandardConverter.Multiplicity
- All Implemented Interfaces:
- Serializable, Comparable<StandardConverter.Multiplicity>
- Enclosing class:
- StandardConverter
public static enum StandardConverter.Multiplicity
- extends Enum<StandardConverter.Multiplicity>
Quantities of entries in feed or logrecords in entry
ONE
public static final StandardConverter.Multiplicity ONE
MANY
public static final StandardConverter.Multiplicity MANY
values
public static StandardConverter.Multiplicity[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (StandardConverter.Multiplicity c : StandardConverter.Multiplicity.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static StandardConverter.Multiplicity valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Apache CXF