public enum BorderEffect extends Enum<BorderEffect>
Describes effect which should be applied to the border of the annotations.
Enum Constant and Description |
---|
Cloudy
The border will appear "cloudly".
|
None
No effect.
|
Modifier and Type | Method and Description |
---|---|
static BorderEffect |
getByValue(int value) |
int |
getValue() |
static BorderEffect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BorderEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderEffect None
No effect.
public static final BorderEffect Cloudy
The border will appear "cloudly".
public static BorderEffect[] values()
for (BorderEffect c : BorderEffect.values()) System.out.println(c);
public static BorderEffect 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 BorderEffect getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.