cz.cuni.amis.pogamut.episodic.visualizer
Enum VertexType

Package class diagram package VertexType
java.lang.Object
  extended by java.lang.Enum<VertexType>
      extended by cz.cuni.amis.pogamut.episodic.visualizer.VertexType
All Implemented Interfaces:
Serializable, Comparable<VertexType>

public enum VertexType
extends Enum<VertexType>

Author:
Administrator

Enum Constant Summary
ACTION
           
AFFORDANCE
           
ATOMIC_ACTION
           
DEFAULT_VERTEX
           
INTENTION
           
OBJECT
           
SLOT_CONTENT
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.