- all() - Static method in class com.github.robtimus.obfuscation.Obfuscator
-
Returns an immutable obfuscator that replaces all characters with *
.
- all(char) - Static method in class com.github.robtimus.obfuscation.Obfuscator
-
Returns an immutable obfuscator that replaces all characters with a specific character.
- append(CharSequence) - Method in class com.github.robtimus.obfuscation.support.CachingObfuscatingWriter
-
- append(CharSequence, int, int) - Method in class com.github.robtimus.obfuscation.support.CachingObfuscatingWriter
-
- append(char) - Method in class com.github.robtimus.obfuscation.support.CachingObfuscatingWriter
-
- append(CharSequence) - Method in class com.github.robtimus.obfuscation.support.LimitAppendable
-
- append(CharSequence, int, int) - Method in class com.github.robtimus.obfuscation.support.LimitAppendable
-
- append(char) - Method in class com.github.robtimus.obfuscation.support.LimitAppendable
-
- append(int, Appendable) - Static method in class com.github.robtimus.obfuscation.support.ObfuscatorUtils
-
Appends a single character to an Appendable
.
- append(char, int, Appendable) - Static method in class com.github.robtimus.obfuscation.support.ObfuscatorUtils
-
Appends a single character a number of times to an Appendable
.
- append(char[], Appendable) - Static method in class com.github.robtimus.obfuscation.support.ObfuscatorUtils
-
Appends an array of characters to an Appendable
.
- append(char[], int, int, Appendable) - Static method in class com.github.robtimus.obfuscation.support.ObfuscatorUtils
-
Appends a portion of an array of characters to an Appendable
.
- append(String, Appendable) - Static method in class com.github.robtimus.obfuscation.support.ObfuscatorUtils
-
Appends a string to an Appendable
.
- append(String, int, int, Appendable) - Static method in class com.github.robtimus.obfuscation.support.ObfuscatorUtils
-
Appends a portion of a string to an Appendable
.
- appendAtMost(Appendable, long) - Static method in class com.github.robtimus.obfuscation.support.ObfuscatorUtils
-
Returns an Appendable
that will discard text after a specific amount of text has been appended.
- atFirst(char) - Static method in class com.github.robtimus.obfuscation.Obfuscator.SplitPoint
-
Creates a new split point that splits at the first occurrence of a character.
- atLast(char) - Static method in class com.github.robtimus.obfuscation.Obfuscator.SplitPoint
-
Creates a new split point that splits at the last occurrence of a character.
- atLeastFromEnd(int) - Method in class com.github.robtimus.obfuscation.Obfuscator.PortionBuilder
-
Sets the minimum number of characters from the end that need to be obfuscated.
- atLeastFromStart(int) - Method in class com.github.robtimus.obfuscation.Obfuscator.PortionBuilder
-
Sets the minimum number of characters from the start that need to be obfuscated.
- atNth(char, int) - Static method in class com.github.robtimus.obfuscation.Obfuscator.SplitPoint
-
Creates a new split point that splits at a specific occurrence of a character.