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

graphql.kickstart.execution.StringUtils Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy