All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cloud.sdk.service.csn2jpa.csn.parser.Utils Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
/*******************************************************************************
 * * © 2018 SAP SE or an SAP affiliate company. All rights reserved. *
 ******************************************************************************/
package com.sap.cloud.sdk.service.csn2jpa.csn.parser;

public class Utils {

	private static final String PATH_SEPARATOR = ".";

	private Utils() {

	}

	public static String getNamespace(String input) {
		if (!input.contains(PATH_SEPARATOR)) {
			return "";
		}
		int p = input.lastIndexOf(PATH_SEPARATOR);
		return input.substring(0, p);
	}

	public static String getName(String input) {
		if (!input.contains(PATH_SEPARATOR)) {
			return input;
		}
		int p = input.lastIndexOf(PATH_SEPARATOR);
		return input.substring(p + 1);
	}

	public static boolean isAnnotation(String key) {
		return key.startsWith("@");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy