com.atlassian.jira.functest.framework.admin
Enum GeneralConfiguration.EmailVisibility

java.lang.Object
  extended by java.lang.Enum<GeneralConfiguration.EmailVisibility>
      extended by com.atlassian.jira.functest.framework.admin.GeneralConfiguration.EmailVisibility
All Implemented Interfaces:
Serializable, Comparable<GeneralConfiguration.EmailVisibility>
Enclosing interface:
GeneralConfiguration

public static enum GeneralConfiguration.EmailVisibility
extends Enum<GeneralConfiguration.EmailVisibility>

Options for user email visibility

Since:
v4.1

Enum Constant Summary
HIDDEN
           
LOGGED_IN_ONLY
           
MASKED
           
PUBLIC
           
 
Method Summary
 String toString()
           
static GeneralConfiguration.EmailVisibility valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GeneralConfiguration.EmailVisibility[] 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

PUBLIC

public static final GeneralConfiguration.EmailVisibility PUBLIC

HIDDEN

public static final GeneralConfiguration.EmailVisibility HIDDEN

MASKED

public static final GeneralConfiguration.EmailVisibility MASKED

LOGGED_IN_ONLY

public static final GeneralConfiguration.EmailVisibility LOGGED_IN_ONLY
Method Detail

values

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

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

valueOf

public static GeneralConfiguration.EmailVisibility 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

toString

public String toString()
Overrides:
toString in class Enum<GeneralConfiguration.EmailVisibility>


Copyright © 2002-2012 Atlassian. All Rights Reserved.