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 StrLConnectorModifier and TypeMethodDescriptionstatic intData.allocateStrL(StrLConnector sc, long size) Allocate a strL so that a buffer can be stored usingwriteBytes; the contents of the strL will not be initialized.static intData.allocateStrL(StrLConnector sc, long size, boolean binary) Allocate a strL so that a buffer can be stored usingwriteBytes; the contents of the strL will not be initialized.static intDataFrame.allocateStrL(StrLConnector dsc, long size) Deprecated.Allocate a strL so that a buffer can be stored usingwriteBytes; the contents of the strL will not be initialized.static intDataFrame.allocateStrL(StrLConnector dsc, long size, boolean binary) Deprecated.Allocate a strL so that a buffer can be stored usingwriteBytes; the contents of the strL will not be initialized.intFrame.allocateStrL(StrLConnector dsc, long size) Allocate a strL so that a buffer can be stored usingwriteBytes; the contents of the strL will not be initialized.intFrame.allocateStrL(StrLConnector dsc, long size, boolean binary) Allocate a strL so that a buffer can be stored usingwriteBytes; the contents of the strL will not be initialized.static intData.readBytes(StrLConnector sc, byte[] b) Read a sequence of bytes from a strL.static intData.readBytes(StrLConnector sc, byte[] b, int off, int len) Read a sequence of bytes from a strL.static intDataFrame.readBytes(StrLConnector dsc, byte[] b) Deprecated.Read a sequence of bytes from a strL in the current Stata dataset.static intDataFrame.readBytes(StrLConnector dsc, byte[] b, int off, int len) Deprecated.Read a sequence of bytes from a strL in the current Stata dataset.intFrame.readBytes(StrLConnector dsc, byte[] b) Read a sequence of bytes from a strL.intFrame.readBytes(StrLConnector dsc, byte[] b, int off, int len) Read a sequence of bytes from a strL.static intData.storeBytes(StrLConnector sc, byte[] bytes, boolean binary) Store a byte buffer to a strL.static intData.writeBytes(StrLConnector sc, byte[] b) Write a byte buffer to a strL; the strL must be allocated usingallocateStrLbefore calling this method.static intData.writeBytes(StrLConnector sc, byte[] b, int off, int len) Writelenbytes from the specified byte buffer starting at offsetoffto a strL; the strL must be allocated usingallocateStrLbefore calling this method.static intDataFrame.writeBytes(StrLConnector dsc, byte[] b) Deprecated.Write a byte buffer to a strL in the current Stata dataset; the strL must be allocated usingallocateStrLbefore calling this method.static intDataFrame.writeBytes(StrLConnector dsc, byte[] b, int off, int len) Deprecated.Writelenbytes from the specified byte buffer starting at offsetoffto a strL in the current Stata dataset; the strL must be allocated usingallocateStrLbefore calling this method.intFrame.writeBytes(StrLConnector dsc, byte[] b) Write a byte buffer to a strL; the strL must be allocated usingallocateStrLbefore calling this method.intFrame.writeBytes(StrLConnector dsc, byte[] b, int off, int len) Writelenbytes from the specified byte buffer starting at offsetoffto a strL; the strL must be allocated usingallocateStrLbefore calling this method.