Uses of Class
com.stata.sfi.StrLConnector

Packages that use StrLConnector
Package
Description
The Stata Function Interface (SFI) provides the classes necessary for Java to interact with core features of Stata.
  • Uses of StrLConnector in com.stata.sfi

    Methods in com.stata.sfi with parameters of type StrLConnector
    Modifier and Type
    Method
    Description
    static int
    Data.allocateStrL(StrLConnector sc, long size)
    Allocate a strL so that a buffer can be stored using writeBytes; the contents of the strL will not be initialized.
    static int
    Data.allocateStrL(StrLConnector sc, long size, boolean binary)
    Allocate a strL so that a buffer can be stored using writeBytes; the contents of the strL will not be initialized.
    static int
    DataFrame.allocateStrL(StrLConnector dsc, long size)
    Deprecated.
    Allocate a strL so that a buffer can be stored using writeBytes; the contents of the strL will not be initialized.
    static int
    DataFrame.allocateStrL(StrLConnector dsc, long size, boolean binary)
    Deprecated.
    Allocate a strL so that a buffer can be stored using writeBytes; the contents of the strL will not be initialized.
    int
    Frame.allocateStrL(StrLConnector dsc, long size)
    Allocate a strL so that a buffer can be stored using writeBytes; the contents of the strL will not be initialized.
    int
    Frame.allocateStrL(StrLConnector dsc, long size, boolean binary)
    Allocate a strL so that a buffer can be stored using writeBytes; the contents of the strL will not be initialized.
    static int
    Data.readBytes(StrLConnector sc, byte[] b)
    Read a sequence of bytes from a strL.
    static int
    Data.readBytes(StrLConnector sc, byte[] b, int off, int len)
    Read a sequence of bytes from a strL.
    static int
    DataFrame.readBytes(StrLConnector dsc, byte[] b)
    Deprecated.
    Read a sequence of bytes from a strL in the current Stata dataset.
    static int
    DataFrame.readBytes(StrLConnector dsc, byte[] b, int off, int len)
    Deprecated.
    Read a sequence of bytes from a strL in the current Stata dataset.
    int
    Frame.readBytes(StrLConnector dsc, byte[] b)
    Read a sequence of bytes from a strL.
    int
    Frame.readBytes(StrLConnector dsc, byte[] b, int off, int len)
    Read a sequence of bytes from a strL.
    static int
    Data.storeBytes(StrLConnector sc, byte[] bytes, boolean binary)
    Store a byte buffer to a strL.
    static int
    Data.writeBytes(StrLConnector sc, byte[] b)
    Write a byte buffer to a strL; the strL must be allocated using allocateStrL before calling this method.
    static int
    Data.writeBytes(StrLConnector sc, byte[] b, int off, int len)
    Write len bytes from the specified byte buffer starting at offset off to a strL; the strL must be allocated using allocateStrL before calling this method.
    static int
    DataFrame.writeBytes(StrLConnector dsc, byte[] b)
    Deprecated.
    Write a byte buffer to a strL in the current Stata dataset; the strL must be allocated using allocateStrL before calling this method.
    static int
    DataFrame.writeBytes(StrLConnector dsc, byte[] b, int off, int len)
    Deprecated.
    Write len bytes from the specified byte buffer starting at offset off to a strL in the current Stata dataset; the strL must be allocated using allocateStrL before calling this method.
    int
    Frame.writeBytes(StrLConnector dsc, byte[] b)
    Write a byte buffer to a strL; the strL must be allocated using allocateStrL before calling this method.
    int
    Frame.writeBytes(StrLConnector dsc, byte[] b, int off, int len)
    Write len bytes from the specified byte buffer starting at offset off to a strL; the strL must be allocated using allocateStrL before calling this method.