NAME
Template::Plugin::Java::Constants - Constants for the Java Template plugin modules.
SYNOPSIS
use Template::Plugin::Java::Constants qw/:regex/; use Template::Plugin::Java::Constants qw/:boolean/; use Template::Plugin::Java::Constants qw/:all/;
DESCRIPTION
- regex
-
The "regex" tag exports qr// compiled regular expressions SCALAR, PRIMITIVE, STRING and ARRAY, these are for matching Java types. All of these match a whole line, with no extra whitespace, and return the matched java type as $1. They may be used as:
$string =~ /@{[SCALAR]}/; # Ugly but effective and relatively fast.
- SCALAR
-
Any primitive or encapsulated primitive: int, or Integer, or String, etc.
- PRIMITIVE
-
Only primitive types like int, float, double, byte, etc.
- STRING
-
An incarnation of java.lang.String.
- ARRAY
-
A java.util.Vector.
- boolean
-
The boolean tag just exports the constants TRUE as 1 and FALSE as 0.
- all
-
Exports all of the proceeding.
AUTHOR
Rafael Kitover (caelum@debian.org)
COPYRIGHT
This program is Copyright (c) 2000 by Rafael Kitover. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
perl(1), Template(3), Template::Plugin::Java::Utils(3), Template::Plugin::Java::SQL(3)