
graphql.kickstart.execution.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-kickstart Show documentation
Show all versions of graphql-java-kickstart Show documentation
relay.js-compatible GraphQL servlet
The newest version!
package graphql.kickstart.execution;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
@NoArgsConstructor(access = AccessLevel.PRIVATE)
class StringUtils {
static boolean isNotEmpty(CharSequence cs) {
return !isEmpty(cs);
}
static boolean isEmpty(final CharSequence cs) {
return cs == null || cs.length() == 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy