Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

Java.GetStaticField

Queries a static field on a class.

Component Version macOS Windows Linux Server iOS SDK
Java 6.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ❌ No
MBS( "Java.GetStaticField"; ClassName; FieldName; Signature )   More

Parameters

Parameter Description Example
ClassName The name of the java class. "com.mbs.test"
FieldName The name of the field. "test"
Signature The java signature of the field.
This describes the data type of the field.
"I"

Result

Returns value or error.

Description

Queries a static field on a class.
This is like a global variable as there is only one value for all objects of the class.
Data type is automatically detected by plugin from signature.
If you read an object value, please call Java.Release later for it.

Java is only available if you call Java.Initialize before to load the java runtime.
Supported data types include: void, int, long, boolean, string, double, float, char, byte, object, byte array (for container), char array (using FileMaker text).

For PDF content: If you have a DynaPDF Pro license and DynaPDF functions initialized, this function can add previews for the PDF file on Windows and Linux. For MacOS, we make them with PDFKit.

Examples

Test static field:

Set Variable [$r; Value:MBS( "Java.SetStaticField"; "test"; "n"; "I"; 3456)]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "test"; "n"; "I")]
Show Custom Dialog ["value"; $r]

Query various static fields:

Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_boolean"; "Z")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_byte"; "B")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_byteArray"; "[B")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_char"; "C")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_charArray"; "[C")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_double"; "D")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_float"; "F")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_int"; "I")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_long"; "J")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_short"; "S")]
Set Variable [$r; Value:MBS( "Java.GetStaticField"; "tests"; "static_property_string"; "Ljava/lang/String;")]

See also

Example Databases

This function checks for a license.

Created 2nd October 2016, last changed 17th August 2018


Java.GetObjectField - Java.Initialize