org.jenkinsci.plugins.pollmailboxtrigger
Enum PollMailboxTrigger.Properties

java.lang.Object
  extended by java.lang.Enum<PollMailboxTrigger.Properties>
      extended by org.jenkinsci.plugins.pollmailboxtrigger.PollMailboxTrigger.Properties
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PollMailboxTrigger.Properties>
Enclosing class:
PollMailboxTrigger

public static enum PollMailboxTrigger.Properties
extends java.lang.Enum<PollMailboxTrigger.Properties>


Enum Constant Summary
attachments
           
folder
           
host
           
password
           
receivedXMinutesAgo
           
storeName
           
subjectContains
           
username
           
 
Method Summary
static PollMailboxTrigger.Properties valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PollMailboxTrigger.Properties[] 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

storeName

public static final PollMailboxTrigger.Properties storeName

host

public static final PollMailboxTrigger.Properties host

username

public static final PollMailboxTrigger.Properties username

password

public static final PollMailboxTrigger.Properties password

folder

public static final PollMailboxTrigger.Properties folder

subjectContains

public static final PollMailboxTrigger.Properties subjectContains

receivedXMinutesAgo

public static final PollMailboxTrigger.Properties receivedXMinutesAgo

attachments

public static final PollMailboxTrigger.Properties attachments
Method Detail

values

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

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

valueOf

public static PollMailboxTrigger.Properties 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