org.openliberty.xmltooling.pp
Enum MsgTechnology.Technology

java.lang.Object
  extended by java.lang.Enum<MsgTechnology.Technology>
      extended by org.openliberty.xmltooling.pp.MsgTechnology.Technology
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MsgTechnology.Technology>
Enclosing class:
MsgTechnology

public static enum MsgTechnology.Technology
extends java.lang.Enum<MsgTechnology.Technology>

These are severely lacking and not up to date

Author:
asa

Enum Constant Summary
AOL
           
EMAIL
           
FAX
           
ICQ
           
IRC
           
MIM
           
MMS
           
MSN
           
PAGER
           
SMS
           
TELEPHONE
           
VOIP
           
YAHOO
           
 
Field Summary
private  java.lang.String uri
           
 
Method Summary
 java.lang.String uri()
           
static MsgTechnology.Technology valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MsgTechnology.Technology[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TELEPHONE

public static final MsgTechnology.Technology TELEPHONE

VOIP

public static final MsgTechnology.Technology VOIP

FAX

public static final MsgTechnology.Technology FAX

EMAIL

public static final MsgTechnology.Technology EMAIL

SMS

public static final MsgTechnology.Technology SMS

MMS

public static final MsgTechnology.Technology MMS

PAGER

public static final MsgTechnology.Technology PAGER

AOL

public static final MsgTechnology.Technology AOL

ICQ

public static final MsgTechnology.Technology ICQ

YAHOO

public static final MsgTechnology.Technology YAHOO

MSN

public static final MsgTechnology.Technology MSN

MIM

public static final MsgTechnology.Technology MIM

IRC

public static final MsgTechnology.Technology IRC
Field Detail

uri

private java.lang.String uri
Method Detail

values

public static final MsgTechnology.Technology[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(MsgTechnology.Technology c : MsgTechnology.Technology.values())
        System.out.println(c);

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

valueOf

public static MsgTechnology.Technology 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

uri

public java.lang.String uri()