com.microsoft.graph.models.Win32LobAppRuleOperator Maven / Gradle / Ivy
// Template Source: Enum.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
/**
* The Enum Win32Lob App Rule Operator.
*/
public enum Win32LobAppRuleOperator
{
/**
* not Configured
*/
NOT_CONFIGURED,
/**
* equal
*/
EQUAL,
/**
* not Equal
*/
NOT_EQUAL,
/**
* greater Than
*/
GREATER_THAN,
/**
* greater Than Or Equal
*/
GREATER_THAN_OR_EQUAL,
/**
* less Than
*/
LESS_THAN,
/**
* less Than Or Equal
*/
LESS_THAN_OR_EQUAL,
/**
* For Win32LobAppRuleOperator values that were not expected from the service
*/
UNEXPECTED_VALUE
}