use strict; use warnings FATAL => 'all'; package MarpaX::Java::ClassFile::Struct::ConstantDoubleInfo; use MarpaX::Java::ClassFile::Struct::_Base -tiny => [qw/_perlvalue tag high_bytes low_bytes/], '""' => [ [ sub { $_[0]->_perlvalue->bstr } ] ]; # ABSTRACT: CONSTANT_Double_info our $VERSION = '0.009'; # VERSION our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY use MarpaX::Java::ClassFile::Struct::_Types qw/U1/; use Types::Encodings qw/Bytes/; use Types::Standard qw/InstanceOf/; has _perlvalue => ( is => 'ro', required => 1, isa => InstanceOf['Math::BigFloat'] ); has tag => ( is => 'ro', required => 1, isa => U1 ); has high_bytes => ( is => 'ro', required => 1, isa => Bytes ); has low_bytes => ( is => 'ro', required => 1, isa => Bytes ); 1; __END__ =pod =encoding UTF-8 =head1 NAME MarpaX::Java::ClassFile::Struct::ConstantDoubleInfo - CONSTANT_Double_info =head1 VERSION version 0.009 =head1 AUTHOR Jean-Damien Durand =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2016 by Jean-Damien Durand. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut