Enum Icon
- java.lang.Object
-
- java.lang.Enum<Icon>
-
- software.amazon.awssdk.services.quicksight.model.Icon
-
- All Implemented Interfaces:
Serializable,Comparable<Icon>
@Generated("software.amazon.awssdk:codegen") public enum Icon extends Enum<Icon>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARROW_DOWNARROW_DOWN_LEFTARROW_DOWN_RIGHTARROW_LEFTARROW_RIGHTARROW_UPARROW_UP_LEFTARROW_UP_RIGHTCARET_DOWNCARET_UPCHECKMARKCIRCLEFACE_DOWNFACE_FLATFACE_UPFLAGMINUSONE_BARPLUSSQUARETHREE_BARTHUMBS_DOWNTHUMBS_UPTRIANGLETWO_BARUNKNOWN_TO_SDK_VERSIONX
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IconfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<Icon>knownValues()StringtoString()static IconvalueOf(String name)Returns the enum constant of this type with the specified name.static Icon[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CARET_UP
public static final Icon CARET_UP
-
CARET_DOWN
public static final Icon CARET_DOWN
-
PLUS
public static final Icon PLUS
-
MINUS
public static final Icon MINUS
-
ARROW_UP
public static final Icon ARROW_UP
-
ARROW_DOWN
public static final Icon ARROW_DOWN
-
ARROW_LEFT
public static final Icon ARROW_LEFT
-
ARROW_UP_LEFT
public static final Icon ARROW_UP_LEFT
-
ARROW_DOWN_LEFT
public static final Icon ARROW_DOWN_LEFT
-
ARROW_RIGHT
public static final Icon ARROW_RIGHT
-
ARROW_UP_RIGHT
public static final Icon ARROW_UP_RIGHT
-
ARROW_DOWN_RIGHT
public static final Icon ARROW_DOWN_RIGHT
-
FACE_UP
public static final Icon FACE_UP
-
FACE_DOWN
public static final Icon FACE_DOWN
-
FACE_FLAT
public static final Icon FACE_FLAT
-
ONE_BAR
public static final Icon ONE_BAR
-
TWO_BAR
public static final Icon TWO_BAR
-
THREE_BAR
public static final Icon THREE_BAR
-
CIRCLE
public static final Icon CIRCLE
-
TRIANGLE
public static final Icon TRIANGLE
-
SQUARE
public static final Icon SQUARE
-
FLAG
public static final Icon FLAG
-
THUMBS_UP
public static final Icon THUMBS_UP
-
THUMBS_DOWN
public static final Icon THUMBS_DOWN
-
CHECKMARK
public static final Icon CHECKMARK
-
X
public static final Icon X
-
UNKNOWN_TO_SDK_VERSION
public static final Icon UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static Icon[] 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 (Icon c : Icon.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Icon 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
-
fromValue
public static Icon fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- Icon corresponding to the value
-
-