File: Value.pm

package info (click to toggle)
libmoosex-app-perl 1.43-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 712 kB
  • sloc: perl: 4,011; makefile: 2
file content (54 lines) | stat: -rw-r--r-- 868 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# ============================================================================
package MooseX::App::ParsedArgv::Value;
# ============================================================================

use 5.010;
use utf8;

use Moose;

has 'raw' => (
    is              => 'ro',
    isa             => 'Str',
    predicate       => 'has_raw',
);

has 'value' => (
    is              => 'ro',
    required        => 1,
);

has 'position' => (
    is              => 'ro',
    isa             => 'Int',
    default         => 999,
);

__PACKAGE__->meta->make_immutable();
1;

=pod

=head1 NAME

MooseX::App::ParsedArgv::Value - Parsed value from @ARGV

=head1 DESCRIPTION

Every instance of this class represents a value from @ARGV

=head1 METHODS

=head2 key

Parameter value or option key

=head2 value

Scalar value

=head2 raw

Raw value as supplied by the user

=cut