io.ebeaninternal.server.text.json.PathStack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.text.json;
import io.ebeaninternal.server.util.ArrayStack;
public class PathStack extends ArrayStack {
public String peekFullPath(String key) {
String prefix = peekWithNull();
if (prefix != null) {
return prefix + "." + key;
} else {
return key;
}
}
public void pushPathKey(String key) {
String prefix = peekWithNull();
if (prefix != null) {
key = prefix + "." + key;
}
push(key);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy