Sha256: a2028f7e302189a765cf105de5310ca4f4d45af511808eecc24b573b6ab47c5a
Contents?: true
Size: 298 Bytes
Versions: 21
Compression:
Stored size: 298 Bytes
Contents
package Javonet::Sdk::Internal::ConnectionType; use strict; use warnings FATAL => 'all'; use Moose; my %connection_type = ( 'InMemory' => 0, 'Tcp' => 1, 'WithConfig' => 2, ); sub get_connection_type { my $type = shift; return $connection_type{$type}; } no Moose; 1;
Version data entries
21 entries across 18 versions & 1 rubygems