Uses of Class
org.graphdrawing.graphml.GraphOrderType

Packages that use GraphOrderType
org.graphdrawing.graphml   
org.graphdrawing.graphml.impl   
 

Uses of GraphOrderType in org.graphdrawing.graphml
 

Fields in org.graphdrawing.graphml with type parameters of type GraphOrderType
static List<GraphOrderType> GraphOrderType.VALUES
          A public read-only list of all the 'Graph Order Type' enumerators.
 

Methods in org.graphdrawing.graphml that return GraphOrderType
static GraphOrderType GraphOrderType.get(int value)
          Returns the 'Graph Order Type' literal with the specified integer value.
static GraphOrderType GraphOrderType.get(String literal)
          Returns the 'Graph Order Type' literal with the specified literal value.
static GraphOrderType GraphOrderType.getByName(String name)
          Returns the 'Graph Order Type' literal with the specified name.
 GraphOrderType GraphType.getParseOrder()
          Returns the value of the 'Parse Order' attribute.
static GraphOrderType GraphOrderType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GraphOrderType[] GraphOrderType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.graphdrawing.graphml with parameters of type GraphOrderType
 void GraphType.setParseOrder(GraphOrderType value)
          Sets the value of the 'Parse Order' attribute.
 

Uses of GraphOrderType in org.graphdrawing.graphml.impl
 

Fields in org.graphdrawing.graphml.impl declared as GraphOrderType
protected static GraphOrderType GraphTypeImpl.PARSE_ORDER_EDEFAULT
          The default value of the 'Parse Order' attribute.
protected  GraphOrderType GraphTypeImpl.parseOrder
          The cached value of the 'Parse Order' attribute.
 

Methods in org.graphdrawing.graphml.impl that return GraphOrderType
 GraphOrderType GraphMLFactoryImpl.createGraphOrderTypeFromString(EDataType eDataType, String initialValue)
           
 GraphOrderType GraphMLFactoryImpl.createGraphOrderTypeObjectFromString(EDataType eDataType, String initialValue)
           
 GraphOrderType GraphTypeImpl.getParseOrder()
           
 

Methods in org.graphdrawing.graphml.impl with parameters of type GraphOrderType
 void GraphTypeImpl.setParseOrder(GraphOrderType newParseOrder)