logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

CQL::Prefix - represents a CQL prefix mapping

Description

       Represents a CQL prefix mapping from short name to long identifier.

Methods

new()
       You need to pass in the name and identifier parameters.

       The name is the short name of the prefix mapping. That is, the prefix itself, such as dc, as it might be
       used in a qualifier like dc.title.

       The identifier is the name of the prefix mapping.  That is, typically, a URI permanently allocated to a
       specific qualifier set, such as http://zthes.z3950.org/cql/1.0.

           my $prefix = CQL::Prefix->new(
               name        => 'dc',
               identifier  => 'http://zthes.z3950.org/cql/1.0'
           );

   getName()getIdentifier()
perl v5.36.0                                       2022-12-11                                   CQL::Prefix(3pm)

Name

       CQL::Prefix - represents a CQL prefix mapping

Synopsis

           use CQL::Prefix;

See Also