public enum ViolationCode extends Enum<ViolationCode>
Enum Constant and Description |
---|
BUFFER_TOO_LARGE
A code used to indicate that the buffer between two timeline objects was
too large.
|
BUFFER_TOO_SMALL
A code used to indicate that the buffer between two timeline objects was
too small.
|
Modifier and Type | Method and Description |
---|---|
static ViolationCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViolationCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViolationCode BUFFER_TOO_SMALL
public static final ViolationCode BUFFER_TOO_LARGE
public static ViolationCode[] values()
for (ViolationCode c : ViolationCode.values()) System.out.println(c);
public static ViolationCode 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.