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

NAME

SADI::Data::String - A primitive SADI data type for strings

SYNOPSIS

 use SADI::Data::String;

 # create a String with initial value of 'eddie'
 my $data = SADI::Data::String->new (value => 'eddie');
 my $data = SADI::Data::String->new ('eddie');

 # later change the value of this data object
 $data->value ('tulak');
 print $data->value();

DESCRIPTION

An object representing a String, a SADI 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 SADI::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.