Uses of Class
cool.scx.io.exception.NoMatchFoundException

Packages that use NoMatchFoundException
Package
Description
 
  • Uses of NoMatchFoundException in cool.scx.io

    Methods in cool.scx.io that throw NoMatchFoundException
    Modifier and Type
    Method
    Description
    default long
    ByteInput.indexOf(byte b)
     
    default long
    ByteInput.indexOf(byte[] b)
     
    default long
    ByteInput.indexOf(byte[] b, long maxLength)
     
    default long
    ByteInput.indexOf(byte b, long maxLength)
     
    long
    ByteInput.indexOf(ByteIndexer indexer, long maxLength)
    在最多 maxLength 个字节中查找匹配 (或直到 EOF).
    long
    DefaultByteInput.indexOf(ByteIndexer indexer, long maxLength)
     
    long
    NullByteInput.indexOf(ByteIndexer indexer, long maxLength)
     
    default byte[]
    ByteInput.peekUntil(byte b)
     
    default byte[]
    ByteInput.peekUntil(byte[] b)
     
    default byte[]
    ByteInput.peekUntil(byte[] b, int maxLength)
     
    default byte[]
    ByteInput.peekUntil(byte b, int maxLength)
     
    default byte[]
    ByteInput.readUntil(byte b)
     
    default byte[]
    ByteInput.readUntil(byte[] b)
     
    default byte[]
    ByteInput.readUntil(byte[] b, int maxLength)
    从当前 ByteInput 中读取数据直到遇到指定分隔符 (单字节或多字节).
    default byte[]
    ByteInput.readUntil(byte b, int maxLength)