org.apache.james.mailet
Enum MailetMatcherDescriptor.Type

java.lang.Object
  extended by java.lang.Enum<MailetMatcherDescriptor.Type>
      extended by org.apache.james.mailet.MailetMatcherDescriptor.Type
All Implemented Interfaces:
Serializable, Comparable<MailetMatcherDescriptor.Type>
Enclosing class:
MailetMatcherDescriptor

public static enum MailetMatcherDescriptor.Type
extends Enum<MailetMatcherDescriptor.Type>

Enumerates subjects of description


Enum Constant Summary
MAILET
           
MATCHER
           
 
Method Summary
 String getName()
          Human readable name for type.
 String toString()
           
static MailetMatcherDescriptor.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MailetMatcherDescriptor.Type[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MAILET

public static final MailetMatcherDescriptor.Type MAILET

MATCHER

public static final MailetMatcherDescriptor.Type MATCHER
Method Detail

values

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

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

valueOf

public static MailetMatcherDescriptor.Type 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

getName

public String getName()
Human readable name for type.

Returns:
not null

toString

public String toString()
Overrides:
toString in class Enum<MailetMatcherDescriptor.Type>
See Also:
getName()


Copyright © 2008-2012 The Apache Software Foundation. All Rights Reserved.