public static enum DatelineModelException.ID extends Enum<DatelineModelException.ID>
Enum Constant and Description |
---|
MAXIMUM_WIDTH_EXCEEDED
The maximum width of the dateline has been exceeded.
|
REQUESTED_TIME_SPAN_UNSATISFIED
The requested visible time span can not be fulfilled by the dateline
model.
|
VETO_EXCEPTION
The requested change was vetoed by one of the model listeners.
|
Modifier and Type | Method and Description |
---|---|
static DatelineModelException.ID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatelineModelException.ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatelineModelException.ID MAXIMUM_WIDTH_EXCEEDED
Integer.MAX_VALUE
. The
dateline will then use the maximum value and some parts of the total
time span represented by the dateline model will be cut off and
become invisible / unreachable.public static final DatelineModelException.ID REQUESTED_TIME_SPAN_UNSATISFIED
public static final DatelineModelException.ID VETO_EXCEPTION
public static DatelineModelException.ID[] values()
for (DatelineModelException.ID c : DatelineModelException.ID.values()) System.out.println(c);
public static DatelineModelException.ID 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 nullCopyright © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.