it.sistematica.isharedoc.service.addressbook
Enum AddressBookEntry.EntryAttributeType

java.lang.Object
  extended by java.lang.Enum<AddressBookEntry.EntryAttributeType>
      extended by it.sistematica.isharedoc.service.addressbook.AddressBookEntry.EntryAttributeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AddressBookEntry.EntryAttributeType>
Enclosing class:
AddressBookEntry

public static enum AddressBookEntry.EntryAttributeType
extends java.lang.Enum<AddressBookEntry.EntryAttributeType>


Enum Constant Summary
entryAddressAtom
           
entryAddressEmail
           
entryAddressPec
           
entryAddressPhone
           
entryGeneric
           
 
Method Summary
static AddressBookEntry.EntryAttributeType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AddressBookEntry.EntryAttributeType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

entryGeneric

public static final AddressBookEntry.EntryAttributeType entryGeneric

entryAddressAtom

public static final AddressBookEntry.EntryAttributeType entryAddressAtom

entryAddressEmail

public static final AddressBookEntry.EntryAttributeType entryAddressEmail

entryAddressPec

public static final AddressBookEntry.EntryAttributeType entryAddressPec

entryAddressPhone

public static final AddressBookEntry.EntryAttributeType entryAddressPhone
Method Detail

values

public static AddressBookEntry.EntryAttributeType[] 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 (AddressBookEntry.EntryAttributeType c : AddressBookEntry.EntryAttributeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AddressBookEntry.EntryAttributeType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null