public enum Direction


An enumeration used to specify the primary direction of certain gestures.

Summary

Enum Values

DOWN
LEFT
RIGHT
UP

Public methods

static @NonNull Direction

Returns the reverse of the given direction.

static Direction

Returns the enum constant of this type with the specified name.

static Direction[]

Returns an array containing the constants of this enum type, in the order they're declared.

Public methods

reverse

public static @NonNull Direction reverse(@NonNull Direction direction)

Returns the reverse of the given direction.

valueOf

public static Direction 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.)

Returns
Direction

the enum constant with the specified name

Throws
java.lang.IllegalArgumentException

if this enum type has no constant with the specified name

values

public static Direction[] values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.

Returns
Direction[]

an array containing the constants of this enum type, in the order they're declared