Enum AnnotationLineEndStyle
- java.lang.Object
-
- java.lang.Enum<AnnotationLineEndStyle>
-
- com.blackberry.workspaces.api.sdk.enums.AnnotationLineEndStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<AnnotationLineEndStyle>
public enum AnnotationLineEndStyle extends Enum<AnnotationLineEndStyle>
An enum of the annotation Line End Styles
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LE_BUTT
ButtLE_CIRCLE
CircleLE_CLOSED_ARROW
Closed ArrowLE_DIAMOND
DiamondLE_NONE
NoneLE_OPEN_ARROW
Open ArrowLE_R_CLOSED_ARROW
Reversed Closed ArrowLE_R_OPEN_ARROW
Reversed Open ArrowLE_SLASH
SlashLE_SQUARE
Square
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AnnotationLineEndStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static AnnotationLineEndStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LE_SQUARE
public static final AnnotationLineEndStyle LE_SQUARE
Square
-
LE_CIRCLE
public static final AnnotationLineEndStyle LE_CIRCLE
Circle
-
LE_DIAMOND
public static final AnnotationLineEndStyle LE_DIAMOND
Diamond
-
LE_OPEN_ARROW
public static final AnnotationLineEndStyle LE_OPEN_ARROW
Open Arrow
-
LE_CLOSED_ARROW
public static final AnnotationLineEndStyle LE_CLOSED_ARROW
Closed Arrow
-
LE_NONE
public static final AnnotationLineEndStyle LE_NONE
None
-
LE_BUTT
public static final AnnotationLineEndStyle LE_BUTT
Butt
-
LE_R_OPEN_ARROW
public static final AnnotationLineEndStyle LE_R_OPEN_ARROW
Reversed Open Arrow
-
LE_R_CLOSED_ARROW
public static final AnnotationLineEndStyle LE_R_CLOSED_ARROW
Reversed Closed Arrow
-
LE_SLASH
public static final AnnotationLineEndStyle LE_SLASH
Slash
-
-
Method Detail
-
values
public static AnnotationLineEndStyle[] 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 (AnnotationLineEndStyle c : AnnotationLineEndStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnnotationLineEndStyle 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
-
-