public enum PtIdentifier extends Enum<PtIdentifier>
| Enum Constant and Description | 
|---|
ALTITUDE 
            
              Altitude in meters 
               |  
          
LATITUDE 
            
              Latitude in degrees 
               |  
          
LONGITUDE 
            
              Longitude in degrees 
               |  
          
| Modifier and Type | Method and Description | 
|---|---|
PdfName |  
           getPdfName() 
            
              Gets the PdfName. 
               |  
          
static PtIdentifier |  
           valueOf(String name) 
            
              Returns the enum constant of this type with the specified name. 
               |  
          
static PtIdentifier[] |  
           values() 
            
              Returns an array containing the constants of this enum type, in the order they are declared. 
               |  
          
public static final PtIdentifier LATITUDE
public static final PtIdentifier LONGITUDE
public static final PtIdentifier ALTITUDE
public static PtIdentifier[] values()
for (PtIdentifier c : PtIdentifier.values()) System.out.println(c);
public static PtIdentifier valueOf(String name)
name - the name of the enum constant to be returned. 
           IllegalArgumentException - if this enum type has no constant with the specified name 
           NullPointerException - if the argument is null 
           public PdfName getPdfName()
Copyright © 1998–2019. All rights reserved.