theSq3Lite 10.0
Loading...
Searching...
No Matches
jvsq3lite.Sq3SyncEF Class Reference

Java: enum Sq3SyncEF C-API
More...

Classes

enum  Set
 

Public Member Functions

int get ()
 
String toString ()
 
boolean equals (Sq3SyncEF other)
 

Static Public Member Functions

static Sq3SyncEF AND (Sq3SyncEF.Set... vals)
 
static Sq3SyncEF set (int val)
 

Detailed Description

Java: enum Sq3SyncEF C-API

Definition at line 16 of file Sq3SyncEF.java.

Member Function Documentation

◆ AND()

static Sq3SyncEF jvsq3lite.Sq3SyncEF.AND ( Sq3SyncEF.Set... vals)
inlinestatic

Definition at line 36 of file Sq3SyncEF.java.

36 {
37 int flag = 0;
38 for (int i = 0; i < vals.length; i++) {
39 flag&=vals[i].val;
40 }
41 return new Sq3SyncEF(flag);
42 }
Sq3SyncEF
Synchronization Type Flags.

◆ equals()

boolean jvsq3lite.Sq3SyncEF.equals ( Sq3SyncEF other)
inline

Definition at line 33 of file Sq3SyncEF.java.

33 {
34 return this.flag == other.flag;
35 }

◆ get()

int jvsq3lite.Sq3SyncEF.get ( )
inline

Definition at line 29 of file Sq3SyncEF.java.

29{ return flag; }

◆ set()

static Sq3SyncEF jvsq3lite.Sq3SyncEF.set ( int val)
inlinestatic

Definition at line 43 of file Sq3SyncEF.java.

43 {
44 return Sq3Lite.SyncEF_FromInt(val);
45 }
static SQ3_LITE Sq3Lite(MK_MNG mng)
cast a unknown-object into an Sq3LiteS pointer or NULL if not possible

◆ toString()

String jvsq3lite.Sq3SyncEF.toString ( )
inline

Definition at line 30 of file Sq3SyncEF.java.

30 {
31 return Sq3Lite.SyncEF_ToString(this);
32 }

The documentation for this class was generated from the following file: