public enum BoxStyle extends Enum<BoxStyle>
Represents styles for drawing check in check box.
Enum Constant and Description |
---|
Check
Check style.
|
Circle
Circle style.
|
Cross
Cross style.
|
Diamond
Diamond style.
|
Square
Square style.
|
Star
Star style.
|
Modifier and Type | Method and Description |
---|---|
static BoxStyle |
getByValue(int value) |
int |
getValue() |
static BoxStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxStyle Circle
Circle style.
public static final BoxStyle Check
Check style.
public static final BoxStyle Cross
Cross style.
public static final BoxStyle Diamond
Diamond style.
public static final BoxStyle Square
Square style.
public static final BoxStyle Star
Star style.
public static BoxStyle[] values()
for (BoxStyle c : BoxStyle.values()) System.out.println(c);
public static BoxStyle 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 int getValue()
public static BoxStyle getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.