From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Wikibase::Datatype::Sense - Wikibase sense datatype.

SYNOPSIS

my $obj = Wikibase::Datatype::Sense->new(%params);
my $glosses_ar = $obj->glosses;
my $id = $obj->id;
my $statements_ar = $obj->statements;

DESCRIPTION

This datatype is snak class for representing relation between property and value.

METHODS

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.

glosses

my $glosses_ar = $obj->glosses;

Get glosses.

Returns reference to array with Wikibase::Datatype::Value::Monolingual instances.

id

my $id = $obj->id;

Get id.

Returns string.

statements

my $statements_ar = $obj->statements;

Get statements.

Returns reference to array with Wikibase::Datatype::Statement instances.

ERRORS

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.

EXAMPLE

use strict;
use Unicode::UTF8 qw(decode_utf8);
# One sense for Czech noun 'pes'.
# 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

DEPENDENCIES

Mo, Mo::utils.

SEE ALSO

Wikibase::Datatype

Wikibase datatypes.

REPOSITORY

https://github.com/michal-josef-spacek/Wikibase-Datatype

AUTHOR

Michal Josef Špaček mailto:skim@cpan.org

http://skim.cz

LICENSE AND COPYRIGHT

© 2020-2025 Michal Josef Špaček

BSD 2-Clause License

VERSION

0.37