Wikibase::Datatype::Sense - Wikibase sense datatype.
use Wikibase::Datatype::Sense; my $obj = Wikibase::Datatype::Sense->new(%params); my $glosses_ar = $obj->glosses; my $id = $obj->id; my $statements_ar = $obj->statements;
This datatype is snak class for representing relation between property and value.
new
my $obj = Wikibase::Datatype::Snak->new(%params);
Constructor.
Returns instance of object.
glosses
Item glosses. One per language. Reference to array with Wikibase::Datatype::Value::Monolingual instances. Parameter is optional.
id
Id. Parameter is optional.
statements
Item statements. Reference to array with Wikibase::Datatype::Statement instances. Parameter is optional.
my $glosses_ar = $obj->glosses;
Get glosses.
Returns reference to array with Wikibase::Datatype::Value::Monolingual instances.
my $id = $obj->id;
Get id.
Returns string.
my $statements_ar = $obj->statements;
Get statements.
Returns reference to array with Wikibase::Datatype::Statement instances.
new(): From Mo::utils::check_array_object(): Glosse isn't 'Wikibase::Datatype::Value::Monolingual' object. Parameter 'glosses' must be a array. Parameter 'statements' must be a array. Statement isn't 'Wikibase::Datatype::Statement' object. From Mo::utils::check_number_of_items(): Glosse for language '%s' has multiple values.
use strict; use warnings; use Unicode::UTF8 qw(decode_utf8); use Wikibase::Datatype::Sense; use Wikibase::Datatype::Snak; use Wikibase::Datatype::Statement; use Wikibase::Datatype::Value::Item; use Wikibase::Datatype::Value::Monolingual; use Wikibase::Datatype::Value::String; # One sense for Czech noun 'pes'. # https://www.wikidata.org/wiki/Lexeme:L469 # Statements. my $statement_item = Wikibase::Datatype::Statement->new( # item for this sense (P5137) dog (Q144) 'snak' => Wikibase::Datatype::Snak->new( 'datatype' => 'wikibase-item', 'datavalue' => Wikibase::Datatype::Value::Item->new( 'value' => 'Q144', ), 'property' => 'P5137', ), ); my $statement_image = Wikibase::Datatype::Statement->new( # image (P5137) 'Canadian Inuit Dog.jpg' 'snak' => Wikibase::Datatype::Snak->new( 'datatype' => 'commonsMedia', 'datavalue' => Wikibase::Datatype::Value::String->new( 'value' => 'Canadian Inuit Dog.jpg', ), 'property' => 'P18', ), ); # Object. my $obj = Wikibase::Datatype::Sense->new( 'glosses' => [ Wikibase::Datatype::Value::Monolingual->new( 'language' => 'en', 'value' => 'domesticated mammal related to the wolf', ), Wikibase::Datatype::Value::Monolingual->new( 'language' => 'cs', 'value' => decode_utf8('psovitá šelma chovaná jako domácí zvíře'), ), ], 'id' => 'ID', 'statements' => [ $statement_item, $statement_image, ], ); # Get id. my $id = $obj->id; # Get glosses. my @glosses = map { $_->value.' ('.$_->language.')' } @{$obj->glosses}; # Get statements. my $statements_count = @{$obj->statements}; # Print out. print "Id: $id\n"; print "Glosses:\n"; map { print "\t$_\n"; } @glosses; print "Number of statements: $statements_count\n"; # Output: # Id: ID # Glosses: # domesticated mammal related to the wolf (en) # psovitá šelma chovaná jako domácí zvíře (cs) # Number of statements: 2
Mo, Mo::utils.
Wikibase datatypes.
https://github.com/michal-josef-spacek/Wikibase-Datatype
Michal Josef Špaček mailto:skim@cpan.org
http://skim.cz
© 2020-2023 Michal Josef Špaček
BSD 2-Clause License
0.33
To install Wikibase::Datatype, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Wikibase::Datatype
CPAN shell
perl -MCPAN -e shell install Wikibase::Datatype
For more information on module installation, please visit the detailed CPAN module installation guide.