static TransportType fromString()

in src/main/java/com/azure/servicebus/jms/TransportType.java [31:39]


    static TransportType fromString(final String value) {
        for (TransportType transportType : values()) {
            if (transportType.value.equalsIgnoreCase(value)) {
                return transportType;
            }
        }

        throw new IllegalArgumentException();
    }