net.fortytwo.ripple.model.enums
Enum ExpressionOrder
java.lang.Object
java.lang.Enum<ExpressionOrder>
net.fortytwo.ripple.model.enums.ExpressionOrder
- All Implemented Interfaces:
- Serializable, Comparable<ExpressionOrder>
public enum ExpressionOrder
- extends Enum<ExpressionOrder>
Author: josh
Date: Feb 29, 2008
Time: 6:14:27 PM
DIAGRAMMATIC
public static final ExpressionOrder DIAGRAMMATIC
ANTIDIAGRAMMATIC
public static final ExpressionOrder ANTIDIAGRAMMATIC
values
public static ExpressionOrder[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ExpressionOrder c : ExpressionOrder.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ExpressionOrder 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.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
find
public static ExpressionOrder find(String name)
throws RippleException
- Throws:
RippleException
Copyright © 2007-2011 fortytwo.net. All Rights Reserved.