Sha256: 7308a78efb2e4c0f3c9ec53a76b97b0123ef2e02330669b482fab52027714f68
Contents?: true
Size: 316 Bytes
Versions: 15
Compression:
Stored size: 316 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
15 entries across 15 versions & 1 rubygems