cz.cuni.amis.pogamut.episodic.visualizer
Enum VertexType
java.lang.Object
java.lang.Enum<VertexType>
cz.cuni.amis.pogamut.episodic.visualizer.VertexType
- All Implemented Interfaces:
- Serializable, Comparable<VertexType>
public enum VertexType
- extends Enum<VertexType>
- Author:
- Administrator
|
Method Summary |
static VertexType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static VertexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
DEFAULT_VERTEX
public static final VertexType DEFAULT_VERTEX
INTENTION
public static final VertexType INTENTION
ACTION
public static final VertexType ACTION
ATOMIC_ACTION
public static final VertexType ATOMIC_ACTION
AFFORDANCE
public static final VertexType AFFORDANCE
OBJECT
public static final VertexType OBJECT
SLOT_CONTENT
public static final VertexType SLOT_CONTENT
values
public static VertexType[] 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 (VertexType c : VertexType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static VertexType 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
Copyright © 2013 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.