public class CSSCodec extends AbstractCharacterCodec
| 构造器和说明 |
|---|
CSSCodec() |
| 限定符和类型 | 方法和说明 |
|---|---|
Character |
decodeCharacter(PushbackSequence<Character> input)
Returns the decoded version of the next character from the input string and
advances the current character in the PushbackSequence.
|
String |
encode(char[] immune,
String input)
WARNING!!
|
String |
encodeCharacter(char[] immune,
Character c)
WARNING!!!!
|
decodecontainsCharacter, encodeCharacter, encodeCharacter, getHexForNonAlphanumeric, getHexForNonAlphanumeric, toHex, toHex, toOctalpublic String encode(char[] immune, String input)
AbstractCodecCharacter based Codecs will silently transform code points
that are not legal UTF code points into garbage data as they will cast them
to chars.
If you are implementing an Integer based codec, these will be
silently discarded based on the return from
Character.isValidCodePoint( int ). This is the preferred behavior
moving forward.
Encode a String so that it can be safely used in a specific context.public String encodeCharacter(char[] immune, Character c)
encodeCharacter 在接口中 Codec<Character>encodeCharacter 在类中 AbstractCodec<Character>immune - c - the Character to encodemethod instead of this one!!! YOU HAVE
BEEN WARNED!!!!
{@inheritDoc}public Character decodeCharacter(PushbackSequence<Character> input)
decodeCharacter 在接口中 Codec<Character>decodeCharacter 在类中 AbstractCodec<Character>input - the Character to decodeCopyright © 2023. All rights reserved.