public static final enum

MAMAppConfig.StringQueryType

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

Class Overview

Conflict resolution types for Strings.

Summary

Enum Values
MAMAppConfig.StringQueryType  Any  In case of conflict, arbitrarily picks one. 
MAMAppConfig.StringQueryType  Max  In case of conflict, returns the last result ordered alphabetically. 
MAMAppConfig.StringQueryType  Min  In case of conflict, returns the first result ordered alphabetically. 
Public Methods
static MAMAppConfig.StringQueryType valueOf(String name)
final static StringQueryType[] 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.StringQueryType Any

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

public static final MAMAppConfig.StringQueryType Max

In case of conflict, returns the last result ordered alphabetically.

public static final MAMAppConfig.StringQueryType Min

In case of conflict, returns the first result ordered alphabetically.

Public Methods

public static MAMAppConfig.StringQueryType valueOf (String name)

public static final StringQueryType[] values ()