NAME
OWL::Data::Integer - A primitive data type for integers
SYNOPSIS
use OWL::Data::Integer;
# create an Integer with initial value of -15
my $data = OWL::Data::Integer->new (value => -15);
# set/get the value of this data object
$data->value (79);
print $data->value();
DESCRIPTION
An object representing an Integer.
AUTHORS
Edward Kawas (edward.kawas [at] gmail [dot] com)
Martin Senger (martin.senger [at] gmail [dot] com)
ACCESSIBLE ATTRIBUTES
Details are in OWL::Base. Here just a list of them (additionally to the attributes from the parent classes)
- value
-
A value of this datatype. Must be an integer.