Class Strings
- java.lang.Object
-
- com.microsoft.azure.keyvault.cryptography.Strings
-
public final class Strings extends Object
-
-
Constructor Summary
Constructors Constructor Description Strings()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isNullOrEmpty(String arg)
Determines whether the parameter string is either null or empty.static boolean
isNullOrWhiteSpace(String arg)
Determines whether the parameter string is null, empty or whitespace.
-
-
-
Method Detail
-
isNullOrEmpty
public static boolean isNullOrEmpty(String arg)
Determines whether the parameter string is either null or empty.- Parameters:
arg
- The string to be checked.- Returns:
- true if the string is null or empty.
-
isNullOrWhiteSpace
public static boolean isNullOrWhiteSpace(String arg)
Determines whether the parameter string is null, empty or whitespace.- Parameters:
arg
- The string to be checked.- Returns:
- true if the string is null, empty or whitespace.
-
-