public enum BorderCornerStyle extends Enum<BorderCornerStyle>
Enumerates the border corner styles for border.
| Enum Constant and Description |
|---|
None
None border style.
|
Round
Round border style.
|
| Modifier and Type | Method and Description |
|---|---|
static BorderCornerStyle |
getByValue(int value) |
int |
getValue() |
static BorderCornerStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BorderCornerStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderCornerStyle None
None border style.
public static final BorderCornerStyle Round
Round border style.
public static BorderCornerStyle[] values()
for (BorderCornerStyle c : BorderCornerStyle.values()) System.out.println(c);
public static BorderCornerStyle 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 BorderCornerStyle getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.