Enum AnnotationLineEndStyle
java.lang.Object
java.lang.Enum<AnnotationLineEndStyle>
com.blackberry.workspaces.sdk.api.enums.AnnotationLineEndStyle
- All Implemented Interfaces:
Serializable
,Comparable<AnnotationLineEndStyle>
,java.lang.constant.Constable
public enum AnnotationLineEndStyle extends Enum<AnnotationLineEndStyle>
An enum of the annotation Line End Styles
-
Nested Class Summary
-
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
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.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
LE_SQUARE
Square -
LE_CIRCLE
Circle -
LE_DIAMOND
Diamond -
LE_OPEN_ARROW
Open Arrow -
LE_CLOSED_ARROW
Closed Arrow -
LE_NONE
None -
LE_BUTT
Butt -
LE_R_OPEN_ARROW
Reversed Open Arrow -
LE_R_CLOSED_ARROW
Reversed Closed Arrow -
LE_SLASH
Slash
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-