Uses of Class
gov.nasa.pds.tools.validate.Identifier
Package | Description |
---|---|
gov.nasa.pds.tools.validate |
Implementations of general-purpose classes for the validation
application.
|
-
Uses of Identifier in gov.nasa.pds.tools.validate
Methods in gov.nasa.pds.tools.validate that return Identifier Modifier and Type Method Description Identifier
IdentifierReference. getIdentifier()
Gets the identifier referenced.Identifier
ValidationTarget. getIdentifier()
Gets the identification string for this target.Methods in gov.nasa.pds.tools.validate that return types with arguments of type Identifier Modifier and Type Method Description Map<Identifier,String>
InMemoryRegistrar. getIdentifierDefinitions()
Map<Identifier,String>
TargetRegistrar. getIdentifierDefinitions()
Gets a mapping of identifiers to their locations.Collection<Identifier>
InMemoryRegistrar. getReferencedIdentifiers()
Collection<Identifier>
TargetRegistrar. getReferencedIdentifiers()
Gets a collection of referenced identifiers.Collection<Identifier>
InMemoryRegistrar. getUnreferencedIdentifiers()
Collection<Identifier>
TargetRegistrar. getUnreferencedIdentifiers()
Gets a collection of identifiers that are defined but never referenced.Methods in gov.nasa.pds.tools.validate with parameters of type Identifier Modifier and Type Method Description void
InMemoryRegistrar. addIdentifierReference(String referenceLocation, Identifier identifier)
void
TargetRegistrar. addIdentifierReference(String referenceLocation, Identifier identifier)
Adds a reference to a target identifier.String
InMemoryRegistrar. getIdentifierReferenceLocation(Identifier id)
String
TargetRegistrar. getIdentifierReferenceLocation(Identifier id)
Gets the location of where the given identifier is referenced.String
InMemoryRegistrar. getTargetForIdentifier(Identifier identifier)
String
TargetRegistrar. getTargetForIdentifier(Identifier identifier)
Gets the location where an identifier was defined.boolean
InMemoryRegistrar. isIdentifierReferenced(Identifier identifier)
boolean
TargetRegistrar. isIdentifierReferenced(Identifier identifier)
Tests whether an identifier was referenced.void
ValidationTarget. setIdentifier(Identifier identifier)
Sets the identification string for this target.void
InMemoryRegistrar. setTargetIdentifier(String location, Identifier identifier)
void
TargetRegistrar. setTargetIdentifier(String location, Identifier identifier)
Sets an identifier for uniquely identifying the target.Constructors in gov.nasa.pds.tools.validate with parameters of type Identifier Constructor Description IdentifierReference(String referenceLocation, Identifier identifier)
Creates a new instance with a given location for the target referring to an identifier.