Enum SpaceLogoUpdateEvent.SpaceLogoActions
- java.lang.Object
-
- java.lang.Enum<SpaceLogoUpdateEvent.SpaceLogoActions>
-
- com.atlassian.confluence.event.events.space.SpaceLogoUpdateEvent.SpaceLogoActions
-
- All Implemented Interfaces:
Serializable
,Comparable<SpaceLogoUpdateEvent.SpaceLogoActions>
- Enclosing class:
- SpaceLogoUpdateEvent
public static enum SpaceLogoUpdateEvent.SpaceLogoActions extends Enum<SpaceLogoUpdateEvent.SpaceLogoActions>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SpaceLogoUpdateEvent.SpaceLogoActions
fromString(String text)
String
getText()
static SpaceLogoUpdateEvent.SpaceLogoActions
valueOf(String name)
Returns the enum constant of this type with the specified name.static SpaceLogoUpdateEvent.SpaceLogoActions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLE
public static final SpaceLogoUpdateEvent.SpaceLogoActions DISABLE
-
ENABLE
public static final SpaceLogoUpdateEvent.SpaceLogoActions ENABLE
-
UPLOAD
public static final SpaceLogoUpdateEvent.SpaceLogoActions UPLOAD
-
DELETE
public static final SpaceLogoUpdateEvent.SpaceLogoActions DELETE
-
-
Method Detail
-
values
public static SpaceLogoUpdateEvent.SpaceLogoActions[] 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 (SpaceLogoUpdateEvent.SpaceLogoActions c : SpaceLogoUpdateEvent.SpaceLogoActions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpaceLogoUpdateEvent.SpaceLogoActions 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 nameNullPointerException
- if the argument is null
-
getText
public String getText()
-
fromString
public static SpaceLogoUpdateEvent.SpaceLogoActions fromString(String text)
-
-