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

com.github.sonus21.rqueue.utils.StringUtils Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2020-2023 Sonu Kumar
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * You may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and limitations under the License.
 *
 */

package com.github.sonus21.rqueue.utils;

import java.beans.Introspector;

public final class StringUtils {

  StringUtils() {
  }

  public static boolean isEmpty(String string) {
    if (string == null) {
      return true;
    }
    return string.isEmpty();
  }

  public static String clean(String string) {
    if (string == null) {
      return null;
    }
    return string.trim();
  }

  public static boolean isAlpha(Character c) {
    return Character.isUpperCase(c) || Character.isLowerCase(c);
  }

  public static String getBeanName(String queueName) {
    String beanName = convertToCamelCase(queueName);
    if (beanName.isEmpty()) {
      return getBeanName("bean" + queueName);
    }
    return beanName;
  }

  public static String convertToCamelCase(String string) {
    String txt = clean(string);
    if (isEmpty(txt)) {
      throw new IllegalArgumentException("string is empty");
    }
    StringBuilder sb = new StringBuilder();
    boolean seenAlpha = false;
    for (int i = 0; i < txt.length(); i++) {
      char c = txt.charAt(i);
      if (isAlpha(c)) {
        seenAlpha = true;
        if (i == 0) {
          sb.append(c);
        } else if (!isAlpha(txt.charAt(i - 1))) {
          sb.append(Character.toUpperCase(c));
        } else if (Character.isLowerCase(c)
            || (Character.isUpperCase(c) && Character.isLowerCase(txt.charAt(i - 1)))) {
          sb.append(c);
        } else {
          sb.append(Character.toLowerCase(c));
        }
      } else if (seenAlpha && Character.isDigit(c)) {
        sb.append(c);
      }
    }
    String convertedTxt = sb.toString();
    if (convertedTxt.isEmpty()) {
      return convertedTxt;
    }
    return Introspector.decapitalize(convertedTxt);
  }

  public static String groupName(String name) {
    String groupName = convertToCamelCase(name);
    if (groupName.isEmpty()) {
      return groupName("Group" + name);
    }
    if (isAlpha(groupName.charAt(0)) && Character.isLowerCase(groupName.charAt(0))) {
      char[] chars = groupName.toCharArray();
      chars[0] = Character.toUpperCase(chars[0]);
      return new String(chars);
    }
    return groupName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy