Java HTTP Port Find loadStringSupportedType(String javaType)

Here you can find the source of loadStringSupportedType(String javaType)

Description

load String Supported Type

License

Apache License

Declaration

private static Class loadStringSupportedType(String javaType) 

Method Source Code

//package com.java2s;
/**/*w ww.  j  av  a2 s.  co m*/
 *  Copyright 2005-2015 Red Hat, Inc.
 *
 *  Red Hat licenses this file to you under the Apache License, version
 *  2.0 (the "License"); you may not use this file except in compliance
 *  with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 *  implied.  See the License for the specific language governing
 *  permissions and limitations under the License.
 */

public class Main {
    private static Class loadStringSupportedType(String javaType) {
        if ("java.io.File".equals(javaType)) {
            return String.class;
        } else if ("java.net.URL".equals(javaType)) {
            return String.class;
        } else if ("java.net.URI".equals(javaType)) {
            return String.class;
        }
        return null;
    }
}

Related

  1. isStart0(String host, int port)
  2. issueHttpRequest(String methodName, int[] rc, String host, String port, String path)
  3. isTcpPortOpen(int port)
  4. isTcpPortOpenCallable(final int port)
  5. isTcpPortOpenCallable(final int port)
  6. parse(final String desc, final int defaultPort)
  7. parse(String specs, int defaultPort)
  8. parseCommaDelimitedHosts2(String hosts, int port_range)
  9. parseHostPort(String s)