Sha256: 328ba33a97d57a60a6f8228845811c7c327aee7c21572ecebac1337ce3de77b9
Contents?: true
Size: 1.54 KB
Versions: 22
Compression:
Stored size: 1.54 KB
Contents
package Javonet::Sdk::Core::PerlCommandType; use strict; use warnings; use Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(get_command_type); my %command_type = ( 'Value' => 0, 'LoadLibrary' => 1, 'InvokeStaticMethod' => 2, 'GetStaticField' => 3, 'SetStaticField' => 4, 'CreateClassInstance' => 5, 'GetType' => 6, 'Reference' => 7, 'GetModule' => 8, 'InvokeInstanceMethod' => 9, 'Exception' => 10, 'HeartBeat' => 11, 'Cast' => 12, 'GetInstanceField' => 13, 'Optimize' => 14, 'GenerateLib' => 15, 'InvokeGlobalMethod' => 16, 'DestructReference' => 17, 'Array' => 18, 'ArrayGetItem' => 19, 'ArrayGetSize' => 20, 'ArrayGetRank' => 21, 'ArraySetItem' => 22, 'Array' => 23, 'RetrieveArray' => 24, 'SetInstanceField' => 25, 'InvokeGenericStaticMethod' => 26, 'InvokeGenericMethod' => 27, 'GetEnumItem' => 28, 'GetEnumName' => 29, 'GetEnumValue' => 30, 'AsRef' => 31, 'AsOut' => 32, 'GetRefValue' => 33, ); sub get_command_type { my $command = shift; return $command_type{$command}; } 1;
Version data entries
22 entries across 11 versions & 1 rubygems