org.unlaxer.jaddress.gremlin.Values Maven / Gradle / Ivy
package org.unlaxer.jaddress.gremlin;
public class Values {
public Values(Integer no, String label, Integer size) {
super();
this.no = no;
this.label = label;
this.size = size;
}
Integer no;
String label;
Integer size;
// String parent;
public String getParentLabel() {
String[] sp = label.split("_");
int len = sp[sp.length-1].length()+1;
String ret = label.substring(0, label.length()-len);
return ret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy