theConfig 10.0
Loading...
Searching...
No Matches
jvlcconfig.LcConfigOptionsEF Class Reference

Java: enum LcConfigOptionsEF C-API
More...

Classes

enum  Set
 

Public Member Functions

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

Static Public Member Functions

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

Detailed Description

Java: enum LcConfigOptionsEF C-API

Definition at line 16 of file LcConfigOptionsEF.java.

Member Function Documentation

◆ AND()

static LcConfigOptionsEF jvlcconfig.LcConfigOptionsEF.AND ( LcConfigOptionsEF.Set... vals)
static

Definition at line 42 of file LcConfigOptionsEF.java.

42 {
43 int flag = 0;
44 for (int i = 0; i < vals.length; i++) {
45 flag&=vals[i].val;
46 }
47 return new LcConfigOptionsEF(flag);
48 }
LcConfigOptionsEF
define the configuration-option of a LcConfigC …
Definition LcEnum_lc.h:134

◆ equals()

boolean jvlcconfig.LcConfigOptionsEF.equals ( LcConfigOptionsEF other)

Definition at line 39 of file LcConfigOptionsEF.java.

39 {
40 return this.flag == other.flag;
41 }

◆ get()

int jvlcconfig.LcConfigOptionsEF.get ( )

Definition at line 35 of file LcConfigOptionsEF.java.

35{ return flag; }

◆ set()

static LcConfigOptionsEF jvlcconfig.LcConfigOptionsEF.set ( int val)
static

Definition at line 49 of file LcConfigOptionsEF.java.

49 {
50 return LcConfig.ConfigOptionsEF_FromInt(val);
51 }

◆ toString()

String jvlcconfig.LcConfigOptionsEF.toString ( )

Definition at line 36 of file LcConfigOptionsEF.java.

36 {
37 return LcConfig.ConfigOptionsEF_ToString(this);
38 }

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