NAME
OWL::Data::String - A primitive data type for strings
SYNOPSIS
use
OWL::Data::String;
# create a String with initial value of 'eddie'
my
$data
= OWL::Data::String->new (
value
=>
'eddie'
);
my
$data
= OWL::Data::String->new (
'eddie'
);
# later change the value of this data object
$data
->value (
'tulak'
);
$data
->value();
DESCRIPTION
An object representing a String, an owl primitive data type.
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)