---------------------------------------------------------------------
  ENUM: PathElementType
 
   Possible types associated with path elements
 
  DEFINITIONS:
   path_Unknown
     DO NOT USE. This indicates an invalid PathElement type.
   path_Custom_Root
     Name field may not be null here. Could possibly mean: 'Name:/'
   path_Standard_Root
     Root, as in '/' or '\'
   path_Parent
     As in '..'
   path_Same
     As in '.'
   path_Name
     As in name.
 
  USES:
   Used in constructing or inspecting symbolic links. See PathElement
   and PathElementList classes.
 
  ABUSES:
   NEVER use path_Unknown.
 
  NOTES:
   See PathElementList documentation for an example of how this is
   used.
 
 ----------------------------------------------------------------------
enum PathElementType {

    path_Unknown        = 0,
    path_Custom_Root    = 1,
    path_Standard_Root  = 2,
    path_Parent         = 3,
    path_Same           = 4,
    path_Name           = 5
};

udf_eng@gr.hp.com