public static final enum

MAMAppConfig.NumberQueryType

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.NumberQueryType

Class Overview

Conflict resolution types for integer and double values.

Summary

Enum Values
MAMAppConfig.NumberQueryType  Any  In case of conflict, arbitrarily picks one. 
MAMAppConfig.NumberQueryType  Max  In case of conflict, returns the maximum Integer. 
MAMAppConfig.NumberQueryType  Min  In case of conflict, returns the minimum Integer. 
Public Methods
static MAMAppConfig.NumberQueryType valueOf(String name)
final static NumberQueryType[] 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.NumberQueryType Any

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

public static final MAMAppConfig.NumberQueryType Max

In case of conflict, returns the maximum Integer.

public static final MAMAppConfig.NumberQueryType Min

In case of conflict, returns the minimum Integer.

Public Methods

public static MAMAppConfig.NumberQueryType valueOf (String name)

public static final NumberQueryType[] values ()