Tabnine Logo
ProjKeyParameters
Code IndexAdd Tabnine to your IDE (free)

How to use
ProjKeyParameters
in
org.cts.parser.proj

Best Java code snippets using org.cts.parser.proj.ProjKeyParameters (Showing top 7 results out of 315)

origin: org.orbisgis/cts

  /**
   * If the parameter is not supported throw an exception
   *
   * @param paramKey
   */
  public static void checkUnsupported(String paramKey) {
    if (!isSupported(paramKey)) {
      throw new ParameterException(paramKey + " parameter is not supported");
    }
  }
}
origin: org.orbisgis/cts

/**
 * Return true if the parameter is supported.
 *
 * @param paramKey
 * @return 
 */
public static boolean isSupported(String paramKey) {
  return supportedParameters().contains(paramKey);
}
origin: org.orbisgis/h2gis-functions

if (keyValue.length == 2) {
  String key = formatKey(keyValue[0]);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, keyValue[1]);
} else {
  String key = formatKey(token);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, null);
origin: org.orbisgis/h2gis

if (keyValue.length == 2) {
  String key = formatKey(keyValue[0]);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, keyValue[1]);
} else {
  String key = formatKey(token);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, null);
origin: org.orbisgis/h2spatial

if (keyValue.length == 2) {
  String key = formatKey(keyValue[0]);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, keyValue[1]);
} else {
  String key = formatKey(token);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, null);
origin: orbisgis/h2gis

if (keyValue.length == 2) {
  String key = formatKey(keyValue[0]);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, keyValue[1]);
} else {
  String key = formatKey(token);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, null);
origin: org.orbisgis/cts

if (keyValue.length == 2) {
  String key = formatKey(keyValue[0]);
  ProjKeyParameters.checkUnsupported(key);
  v.put(key, keyValue[1]);
} else {
  String key = formatKey(token);
  ProjKeyParameters.checkUnsupported(key);
  if (key.equals(ProjKeyParameters.wktext)) {
    String[] lines = regex.split(line, 2);
org.cts.parser.projProjKeyParameters

Most used methods

  • checkUnsupported
    If the parameter is not supported throw an exception
  • isSupported
    Return true if the parameter is supported.
  • supportedParameters
    Create an array with the list of supported parameters.

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • getSharedPreferences (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Path (java.nio.file)
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Join (org.hibernate.mapping)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now