public static final enum

MAMAppConfig.BooleanQueryType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.microsoft.intune.mam.policy.appconfig.MAMAppConfig.BooleanQueryType

Class Overview

Conflict resolution types for Boolean values.

Summary

Enum Values
MAMAppConfig.BooleanQueryType  And  In case of conflict, returns false if any of the values are false. 
MAMAppConfig.BooleanQueryType  Any  In case of conflict, arbitrarily picks one. 
MAMAppConfig.BooleanQueryType  Or  In case of conflict, returns true if any of the values are true. 
Public Methods
static MAMAppConfig.BooleanQueryType valueOf(String name)
final static BooleanQueryType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final MAMAppConfig.BooleanQueryType And

In case of conflict, returns false if any of the values are false.

public static final MAMAppConfig.BooleanQueryType Any

In case of conflict, arbitrarily picks one. This is not guaranteed to return the same value every time.

public static final MAMAppConfig.BooleanQueryType Or

In case of conflict, returns true if any of the values are true.

Public Methods

public static MAMAppConfig.BooleanQueryType valueOf (String name)

public static final BooleanQueryType[] values ()