Enum DumpEntity.DumpType
- java.lang.Object
-
- java.lang.Enum<DumpEntity.DumpType>
-
- org.bedework.carddav.server.dirHandlers.db.DumpEntity.DumpType
-
- All Implemented Interfaces:
Serializable,Comparable<DumpEntity.DumpType>
- Enclosing class:
- DumpEntity<T>
public static enum DumpEntity.DumpType extends Enum<DumpEntity.DumpType>
We're dumping the entire object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DumpEntity.DumpTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DumpEntity.DumpType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
def
public static final DumpEntity.DumpType def
We're dumping the entire object
-
compound
public static final DumpEntity.DumpType compound
We're dumping a compound type
-
reference
public static final DumpEntity.DumpType reference
We're dumping enough to refer to an entity
-
-
Method Detail
-
values
public static DumpEntity.DumpType[] 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 (DumpEntity.DumpType c : DumpEntity.DumpType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DumpEntity.DumpType 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 nameNullPointerException- if the argument is null
-
-