|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Pointer.StringType | |
---|---|
org.bridj | BridJ core classes and C runtime (Pointer , BridJ , SizeT , Platform , LastError ...). |
Uses of Pointer.StringType in org.bridj |
---|
Methods in org.bridj that return Pointer.StringType | |
---|---|
static Pointer.StringType |
Pointer.StringType.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Pointer.StringType[] |
Pointer.StringType.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in org.bridj with parameters of type Pointer.StringType | |
---|---|
String |
Pointer.getString(Pointer.StringType type)
Read a native string from the pointed memory location using the default charset. |
String |
Pointer.getString(Pointer.StringType type,
Charset charset)
Read a native string from the pointed memory location, using the provided charset or the system's default if not provided. |
String |
Pointer.getStringAtOffset(long byteOffset,
Pointer.StringType type,
Charset charset)
Read a native string from the pointed memory location shifted by a byte offset, using the provided charset or the system's default if not provided. |
static Pointer<?> |
Pointer.pointerToString(String string,
Pointer.StringType type,
Charset charset)
Allocate memory and write a string to it, using the system's default charset to convert the string (See Pointer.StringType for details on the supported types). |
Pointer<T> |
Pointer.setString(String s,
Pointer.StringType type)
Write a native string to the pointed memory location using the default charset. |
Pointer<T> |
Pointer.setStringAtOffset(long byteOffset,
String s,
Pointer.StringType type,
Charset charset)
Write a native string to the pointed memory location shifted by a byte offset, using the provided charset or the system's default if not provided. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |