com.atlassian.gadgets.spi
Enum GadgetSpecUrlRenderPermission.Vote

java.lang.Object
  extended by java.lang.Enum<GadgetSpecUrlRenderPermission.Vote>
      extended by com.atlassian.gadgets.spi.GadgetSpecUrlRenderPermission.Vote
All Implemented Interfaces:
Serializable, Comparable<GadgetSpecUrlRenderPermission.Vote>
Enclosing interface:
GadgetSpecUrlRenderPermission

public static enum GadgetSpecUrlRenderPermission.Vote
extends Enum<GadgetSpecUrlRenderPermission.Vote>

Possible responses when a GadgetSpecUrlRenderPermission implementation is asked if a URI can be rendered.


Enum Constant Summary
ALLOW
          The gadget URI is explicitly allowed to render.
DENY
          The gadget URI is explicitly forbidden to render.
PASS
          The implementation has no opinion on whether the URI may render.
 
Method Summary
static GadgetSpecUrlRenderPermission.Vote valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GadgetSpecUrlRenderPermission.Vote[] 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

ALLOW

public static final GadgetSpecUrlRenderPermission.Vote ALLOW
The gadget URI is explicitly allowed to render.


DENY

public static final GadgetSpecUrlRenderPermission.Vote DENY
The gadget URI is explicitly forbidden to render.


PASS

public static final GadgetSpecUrlRenderPermission.Vote PASS
The implementation has no opinion on whether the URI may render.

Method Detail

values

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

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

valueOf

public static GadgetSpecUrlRenderPermission.Vote 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


Copyright © 2009 Atlassian. All Rights Reserved.