Uses of Class
net.ogdf.ogml.AlignmentType

Packages that use AlignmentType
net.ogdf.ogml   
net.ogdf.ogml.impl   
 

Uses of AlignmentType in net.ogdf.ogml
 

Fields in net.ogdf.ogml with type parameters of type AlignmentType
static List<AlignmentType> AlignmentType.VALUES
          A public read-only list of all the 'Alignment Type' enumerators.
 

Methods in net.ogdf.ogml that return AlignmentType
static AlignmentType AlignmentType.get(int value)
          Returns the 'Alignment Type' literal with the specified integer value.
static AlignmentType AlignmentType.get(String literal)
          Returns the 'Alignment Type' literal with the specified literal value.
 AlignmentType TextType.getAlignment()
          Returns the value of the 'Alignment' attribute.
static AlignmentType AlignmentType.getByName(String name)
          Returns the 'Alignment Type' literal with the specified name.
static AlignmentType AlignmentType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AlignmentType[] AlignmentType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.ogdf.ogml with parameters of type AlignmentType
 void TextType.setAlignment(AlignmentType value)
          Sets the value of the 'Alignment' attribute.
 

Uses of AlignmentType in net.ogdf.ogml.impl
 

Fields in net.ogdf.ogml.impl declared as AlignmentType
protected  AlignmentType TextTypeImpl.alignment
          The cached value of the 'Alignment' attribute.
protected static AlignmentType TextTypeImpl.ALIGNMENT_EDEFAULT
          The default value of the 'Alignment' attribute.
 

Methods in net.ogdf.ogml.impl that return AlignmentType
 AlignmentType OgmlFactoryImpl.createAlignmentTypeFromString(EDataType eDataType, String initialValue)
           
 AlignmentType OgmlFactoryImpl.createAlignmentTypeObjectFromString(EDataType eDataType, String initialValue)
           
 AlignmentType TextTypeImpl.getAlignment()
           
 

Methods in net.ogdf.ogml.impl with parameters of type AlignmentType
 void TextTypeImpl.setAlignment(AlignmentType newAlignment)