The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

OWL::Data::Boolean - A primitive data type for booleans

SYNOPSIS

 use OWL::Data::Boolean;

 # create an owl Boolean with initial value of true
 my $data = OWL::Data::Boolean->new ( value=>'true' );
 my $data = OWL::Data::Boolean->new ('true');
 my $data = OWL::Data::Boolean->new ();

 # change the value to false
 $data->value ('false');

 # get the value
 print $data->value;

DESCRIPTION

An object representing a Boolan.

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 a boolean (defaults to 1).