com.kuka.nav.fleet.graph.properties
Enum PropertyHolderType

java.lang.Object
  extended by java.lang.Enum<PropertyHolderType>
      extended by com.kuka.nav.fleet.graph.properties.PropertyHolderType
All Implemented Interfaces:
Serializable, Comparable<PropertyHolderType>

public enum PropertyHolderType
extends Enum<PropertyHolderType>

Enum of supported property holder types (currently: node and edge). Uses in PropertyRegistry to register allowed properties for a certain type.


Enum Constant Summary
EDGE
          The edge type.
NODE
          The node type.
 
Method Summary
static PropertyHolderType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PropertyHolderType[] 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

NODE

public static final PropertyHolderType NODE
The node type. Corresponds to a TopologyNode.


EDGE

public static final PropertyHolderType EDGE
The edge type. Corresponds to a TopologyEdge.

Method Detail

values

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

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

valueOf

public static PropertyHolderType 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 © 2019. All rights reserved.