public enum DispositionType extends Enum<DispositionType>
Enum Constant and Description |
---|
ATTACHMENT |
INLINE |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static DispositionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DispositionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispositionType INLINE
public static final DispositionType ATTACHMENT
public static DispositionType[] values()
for (DispositionType c : DispositionType.values()) System.out.println(c);
public static DispositionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
Copyright © 2003–2017 Atlassian. All rights reserved.