public enum InteractionMode extends Enum<InteractionMode>
Enum Constant and Description |
---|
COLUMNS |
NONE |
ROWS |
ROWS_AND_COLUMNS |
Modifier and Type | Method and Description |
---|---|
boolean |
isColumnsEnabled() |
boolean |
isRowsEnabled() |
static InteractionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InteractionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteractionMode NONE
public static final InteractionMode ROWS
public static final InteractionMode COLUMNS
public static final InteractionMode ROWS_AND_COLUMNS
public static InteractionMode[] values()
for (InteractionMode c : InteractionMode.values()) System.out.println(c);
public static InteractionMode 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 boolean isRowsEnabled()
public boolean isColumnsEnabled()
Copyright © 2010–2023 Francesco Kriegel. All rights reserved.