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

NAME

Protocol::XMLRPC::Value::Boolean - XML-RPC array

SYNOPSIS

    my $true  = Protocol::XMLRPC::Value::Boolean->new(1);
    my $true  = Protocol::XMLRPC::Value::Boolean->new('true');
    my $false = Protocol::XMLRPC::Value::Boolean->new(0);
    my $false = Protocol::XMLRPC::Value::Boolean->new('false');

DESCRIPTION

XML-RPC boolean

METHODS

new

Creates new Protocol::XMLRPC::Value::Boolean instance.

type

Returns 'boolean'.

value

    my $boolean = Protocol::XMLRPC::Value::Boolean->new(1);
    # $boolean->value returns 1

    my $boolean = Protocol::XMLRPC::Value::Boolean->new('false');
    # $boolean->value returns 'false'

Returns serialized Perl5 boolean.

to_string

    my $boolean = Protocol::XMLRPC::Value::Boolean->new(1);
    # $boolean->to_string is now '<boolean>1</boolean>'

XML-RPC boolean string representation.

AUTHOR

Viacheslav Tykhanovskyi, vti@cpan.org.

COPYRIGHT

Copyright (C) 2009, Viacheslav Tykhanovskyi.

This program is free software, you can redistribute it and/or modify it under the same terms as Perl 5.10.