public static enum IntervalLiteral.Sign extends Enum<IntervalLiteral.Sign>
| Modifier and Type | Method and Description |
|---|---|
abstract int |
multiplier() |
static IntervalLiteral.Sign |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntervalLiteral.Sign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntervalLiteral.Sign POSITIVE
public static final IntervalLiteral.Sign NEGATIVE
public static IntervalLiteral.Sign[] values()
for (IntervalLiteral.Sign c : IntervalLiteral.Sign.values()) System.out.println(c);
public static IntervalLiteral.Sign 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 abstract int multiplier()
Copyright © 2012–2023. All rights reserved.