Package proguard.util
Interface StringFunction
-
- All Known Implementing Classes:
AndNotStringFunction,AndStringFunction,ClassPoolFeatureNameFunction,ConcatenatingStringFunction,ConstantStringFunction,FilePoolNameFunction,FilteredStringFunction,IdentityStringFunction,MapStringFunction,MatchedStringFunction,MatchingStringFunction,NotStringFunction,OrStringFunction,PrefixAddingStringFunction,PrefixRemovingStringFunction,ResourceFilePoolNameFunction,SuffixAddingStringFunction,SuffixRemovingStringFunction
public interface StringFunctionThis interface provides a method to transform a string into a new string.
-
-
Field Summary
Fields Modifier and Type Field Description static StringFunctionIDENTITY_FUNCTIONA StringFunction that returns the given string.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringtransform(java.lang.String string)Transforms the given string into a new string.
-
-
-
Field Detail
-
IDENTITY_FUNCTION
static final StringFunction IDENTITY_FUNCTION
A StringFunction that returns the given string.
-
-