XML::Schema::Type::List - list type for XML Schema datatypes


XML-Schema documentation  | view source Contained in the XML-Schema distribution.

Index


NAME

Top

XML::Schema::Type::List - list type for XML Schema datatypes

SYNOPSIS

Top

    # an object to represent the base type
    my $float = XML::Schema::Type::float->new();

    # create a list type of the base type
    my $list = XML::Schema::Type::List->new( itemType => $float );

    # instantiate a validated list
    my $items = $list->instance('3.14  2.718');

    # add constraints to list
    $list->constrain( maxLength => 4 );		# max 3 items

    $item = $list->instance('1.2 3.4 5.6');	# OK
    $item = $list->instance('1.2 3.4 5.6 7.8'); # not OK - 4 items
    $item = $list->instance('hello');		# not OK - not a float

DESCRIPTION

Top

This module implements the XML Schema list type.

AUTHOR

Top

Andy Wardley <abw@kfs.org>

VERSION

Top

This is version $Revision: 1.1.1.1 $ of the XML::Schema::Type::List, distributed with version 0.1 of the XML::Schema module set.

COPYRIGHT

Top

SEE ALSO

Top

See also XML::Schema and XML::Schema::Type::Simple.


XML-Schema documentation  | view source Contained in the XML-Schema distribution.