Package proguard.util
Class AndStringFunction
- java.lang.Object
-
- proguard.util.AndStringFunction
-
- All Implemented Interfaces:
StringFunction
public class AndStringFunction extends java.lang.Object implements StringFunction
ThisStringFunctiontests whether the first givenStringFunctionreturns not null, returning the result of the latter function if so, or null otherwise.
-
-
Field Summary
-
Fields inherited from interface proguard.util.StringFunction
IDENTITY_FUNCTION
-
-
Constructor Summary
Constructors Constructor Description AndStringFunction(StringFunction stringFunction1, StringFunction stringFunction2)Creates a new AndStringFunction with the two given string functions.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringtransform(java.lang.String string)Transforms the given string into a new string.
-
-
-
Constructor Detail
-
AndStringFunction
public AndStringFunction(StringFunction stringFunction1, StringFunction stringFunction2)
Creates a new AndStringFunction with the two given string functions.
-
-
Method Detail
-
transform
public java.lang.String transform(java.lang.String string)
Description copied from interface:StringFunctionTransforms the given string into a new string.- Specified by:
transformin interfaceStringFunction
-
-