Sha256: a6397114244db77d0ce77b15ac2206358b4b7f8675a93546b23d091a2354c924

Contents?: true

Size: 1.58 KB

Versions: 13

Compression:

Stored size: 1.58 KB

Contents

class Landslider
	
	# A list of operators that can be used with WsSearchCriterion
	class WsSearchOperator

		# returns values that contain the given search string
		CONTAINS='Contains'
		
		# returns values that "sound like" the given search string (smythe = smith)
		SOUNDS_LIKE='SoundsLike'
		
		# returns values that start with the given search string
		STARTS_WITH='StartsWith'
		
		# returns values that end with the given search string
		ENDS_WITH='EndsWith'
		
		# returns values that do not contain the given search string
		DOES_NOT_CONTAIN='DoesNotContain'
		
		# returns values that are identically equal (case-insensitive) the given search value
		EQUALS='Equals'
		
		# returns values that are not  equal (case-insensitive) the given search value
		NOT_EQUALS='NotEquals'
		
		# returns values that are less than the given search value
		LESS_THAN='LessThan'
		
		# returns values that are less than or equal to the given search value
		LESS_THAN_OR_EQUAL='LessThanOrEqual'
		
		# returns values that are greater than the given search value
		GREATER_THAN='GreaterThan'
		
		# returns values that are greater than or equal to the given search value
		GREATER_THAN_OR_EQUAL='GreaterThanOrEqual'
		
		# returns values that are empty (null)
		EMPTY='Empty'
		
		# returns values that are not empty (not null)
		NOT_EMPTY='NotEmpty'
		
		# returns values that are logically True
		TRUE='True'
		
		# returns values that are logically False
		FALSE='False'
		
		# returns values that are in the specified list
		IN='In'
		
		# returns values that are not in the specified list
		NOT_IN='NotIn'
	end
	
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
landslider-0.5.28 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.26 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.24 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.22 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.21 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.20 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.18 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.17 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.16 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.15 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.12 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.11 lib/landslider/entities/ws_search_operator.rb
landslider-0.5.9 lib/landslider/entities/ws_search_operator.rb