// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices { /// /// All comparison operators associated with parameters in a search query /// /// /// public enum ComparisonOp : int { /// /// Value must equal the one stored on the lobby/session /// Equal = 0, /// /// Value must not equal the one stored on the lobby/session /// Notequal = 1, /// /// Value must be strictly greater than the one stored on the lobby/session /// Greaterthan = 2, /// /// Value must be greater than or equal to the one stored on the lobby/session /// Greaterthanorequal = 3, /// /// Value must be strictly less than the one stored on the lobby/session /// Lessthan = 4, /// /// Value must be less than or equal to the one stored on the lobby/session /// Lessthanorequal = 5, /// /// Prefer values nearest the one specified ie. abs(SearchValue-SessionValue) closest to 0 /// Distance = 6, /// /// Value stored on the lobby/session may be any from a specified list /// Anyof = 7, /// /// Value stored on the lobby/session may NOT be any from a specified list /// Notanyof = 8, /// /// This one value is a part of a collection /// Oneof = 9, /// /// This one value is NOT part of a collection /// Notoneof = 10, /// /// This value is a CASE SENSITIVE substring of an attribute stored on the lobby/session /// Contains = 11 } }