Uses of Class
cool.scx.io.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
    int
    ByteArrayDataReader.indexOf(byte[] b, int max)
     
    int
    ByteArrayDataReader.indexOf(byte b, int max)
     
    default int
    DataReader.indexOf(byte b)
    查找 指定字节 第一次出现的 index (指针不会移动)
    default int
    DataReader.indexOf(byte[] b)
    查找 指定字节数组 第一次出现的 index (指针不会移动)
    int
    DataReader.indexOf(byte[] b, int max)
    查找 指定字节数组 第一次出现的 index (指针不会移动)
    int
    DataReader.indexOf(byte b, int max)
    查找 指定字节 第一次出现的 index (指针不会移动)
    int
    LinkedDataReader.indexOf(byte[] pattern, int max)
     
    int
    LinkedDataReader.indexOf(byte b, int max)
     
    default byte[]
    DataReader.peekUntil(byte b)
    读取 直到 找到匹配的字节 (指针不会移动)
    default byte[]
    DataReader.peekUntil(byte[] b)
    读取 直到 找到匹配的字节 (指针不会移动)
    default byte[]
    DataReader.peekUntil(byte[] b, int max)
    读取 直到 找到匹配的字节 (指针不会移动)
    default byte[]
    DataReader.peekUntil(byte b, int max)
    读取 直到 找到匹配的字节 (指针不会移动)
    default byte[]
    DataReader.readUntil(byte b)
    读取 直到 找到匹配的字节 (指针会移动)
    default byte[]
    DataReader.readUntil(byte[] b)
    读取 直到 找到匹配的字节 (指针会移动)
    default byte[]
    DataReader.readUntil(byte[] b, int max)
    读取 直到 找到匹配的字节 (指针会移动)
    default byte[]
    DataReader.readUntil(byte b, int max)
    读取 直到 找到匹配的字节 (指针会移动)