com.microsoft.azure.proton.transport.proxy.impl.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qpid-proton-j-extensions Show documentation
Show all versions of qpid-proton-j-extensions Show documentation
Extensions on Apache Proton-J library
package com.microsoft.azure.proton.transport.proxy.impl;
class StringUtils {
static boolean isNullOrEmpty(String string) {
return string == null || string.isEmpty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy