protected boolean isTerminator()

in common/src/main/java/org/apache/asyncweb/common/codec/ChunkedBodyDecodingState.java [110:120]


        protected boolean isTerminator(byte b) {
            if (!(b >= '0' && b <= '9' || b >= 'a' && b <= 'f' || b >= 'A'
                && b <= 'F' || b == ' ')) {
                if (b == ' ' || b == '\r' || b == ';') {
                    chunkHasExtension = (b == ';' || b == ' ');
                    return true;
                }
                throw new IllegalArgumentException();
            }
            return false;
        }