Skip to main content

LineDashType Enum

Lists values that specify the line dash type.

Declaration

public enum LineDashType extends Enum<LineDashType> implements IIntEnum

Members

Name Description
DASH

A line that consists of dashes. The binary pattern is 1111000 (four filled points and three spaces).

DASH_DOT

A line that consists of a repeating dash-dot pattern. The binary pattern is 11110001000 (four filled points, three spaces, one filled point, and three spaces).

DOT

A line that consists of dots. The binary pattern is 1000 (one filled point and three spaces).

LONG_DASH

A line that consists of long dashes. The binary pattern is 11111111000 (eight filled points and three spaces).

LONG_DASH_DOT

A line that consists of a repeating long dash-dot pattern. The binary pattern is 111111110001000 (eight filled points, three spaces, one filled point, and three spaces).

LONG_DASH_DOT_DOT

A line that consists of a repeating long dash-dot-dot pattern. The binary pattern is 1111111100010001000 (eight filled points, three spaces, one filled point, three spaces, one filled point, and three spaces).

SOLID

A solid line. The binary pattern is 1 (a continuous line).

SYSTEM_DASH

A line that consists of short dashes. The binary pattern is 1110 (three filled points and one space).

SYSTEM_DASH_DOT

A line that consists of a repeating short dash-dot pattern. The binary pattern is 111010 (three filled points, one space, one filled point, and one space).

SYSTEM_DASH_DOT_DOT

A line that consists of a repeating short dash-dot-dot pattern. The binary pattern is 11101010 (three filled points, one space, one filled point, one space, one filled point, and one space).

SYSTEM_DOT

A line that consists of dots with a short space between them. The binary pattern is 10 (one filled point and one space).

fromValue(int value)

Converts an integer value to the corresponding LineDashType constant.

getName()

Returns the name of this LineDashType constant.

getValue()

Returns the integer value of this LineDashType constant.

toString()

Returns a string representation of this LineDashType constant.

valueOf(String name)

Returns the LineDashType constant with the specified name.

values()

Returns an array that contains all LineDashType constants.

Implements

com.devexpress.java.enums.IIntEnum

Inherited Members

java.lang.Enum.<T>valueOf(java.lang.Class<T>,java.lang.String)
java.lang.Enum.clone()
java.lang.Enum.compareTo(E)
java.lang.Enum.describeConstable()
java.lang.Enum.equals(java.lang.Object)
java.lang.Enum.finalize()
java.lang.Enum.getDeclaringClass()
java.lang.Enum.hashCode()
java.lang.Enum.name()
java.lang.Enum.ordinal()
java.lang.Enum.toString()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
java.lang.Enum
LineDashType