protected internal DataFormatMatcher(Sharpen.InputStream @in, byte[] buffered, int
     bufferedStart, int bufferedLength, com.fasterxml.jackson.core.JsonFactory match
     , com.fasterxml.jackson.core.format.MatchStrength strength)
 {
     _originalStream = @in;
     _bufferedData = buffered;
     _bufferedStart = bufferedStart;
     _bufferedLength = bufferedLength;
     _match = match;
     _matchStrength = strength;
 }
 private DataFormatDetector(com.fasterxml.jackson.core.JsonFactory[] detectors, com.fasterxml.jackson.core.format.MatchStrength
     optMatch, com.fasterxml.jackson.core.format.MatchStrength minMatch, int maxInputLookahead
     )
 {
     _detectors = detectors;
     _optimalMatch = optMatch;
     _minimalMatch = minMatch;
     _maxInputLookahead = maxInputLookahead;
 }