decisionMakingSystem
Enum ItemCathegory

Package class diagram package ItemCathegory
java.lang.Object
  extended by java.lang.Enum<ItemCathegory>
      extended by decisionMakingSystem.ItemCathegory
All Implemented Interfaces:
Serializable, Comparable<ItemCathegory>

public enum ItemCathegory
extends Enum<ItemCathegory>

cathegory of an item which determines basicaly what we can do with it

Author:
Ondrej

Enum Constant Summary
INVENTORY
          object stored in the inventory of the agent
PICKABLE
          for items agent can pick up
PLACE
          for places -> like an Affordance TO_COOK_AT can be performed in the kitchen
PLAYER
          player, can't pick it up, can move, ...
 
Method Summary
static ItemCathegory valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ItemCathegory[] 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

PICKABLE

public static final ItemCathegory PICKABLE
for items agent can pick up


PLACE

public static final ItemCathegory PLACE
for places -> like an Affordance TO_COOK_AT can be performed in the kitchen


PLAYER

public static final ItemCathegory PLAYER
player, can't pick it up, can move, ...


INVENTORY

public static final ItemCathegory INVENTORY
object stored in the inventory of the agent

Method Detail

values

public static ItemCathegory[] 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 (ItemCathegory c : ItemCathegory.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ItemCathegory 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.