001// --------------------------------------------------------------------------------
002// Copyright 2002-2025 Echo Three, LLC
003//
004// Licensed under the Apache License, Version 2.0 (the "License");
005// you may not use this file except in compliance with the License.
006// You may obtain a copy of the License at
007//
008//     http://www.apache.org/licenses/LICENSE-2.0
009//
010// Unless required by applicable law or agreed to in writing, software
011// distributed under the License is distributed on an "AS IS" BASIS,
012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013// See the License for the specific language governing permissions and
014// limitations under the License.
015// --------------------------------------------------------------------------------
016
017package com.echothree.model.control.search.common;
018
019public enum SearchSortOrders {
020
021    COMPONENT_VENDOR_NAME,
022    CONTACT_MECHANISM_NAME,
023    CONTENT_CATALOG_NAME,
024    CONTENT_CATEGORY_NAME,
025    CREATED_TIME,
026    CUSTOMER_NAME,
027    DEFAULT_DESCRIPTION,
028    DELETED_TIME,
029    DESCRIPTION,
030    ENTITY_ALIAS_TYPE_NAME,
031    ENTITY_ATTRIBUTE_GROUP_NAME,
032    ENTITY_ATTRIBUTE_NAME,
033    ENTITY_TYPE_NAME,
034    FIRST_NAME,
035    HARMONIZED_TARIFF_SCHEDULE_CODE_NAME,
036    ITEM_NAME,
037    LAST_NAME,
038    LEAVE_NAME,
039    ENTITY_LIST_ITEM_NAME,
040    MODIFIED_TIME,
041    OFFER_NAME,
042    POSTED_TIME,
043    SALES_ORDER_NAME,
044    SALES_ORDER_BATCH_NAME,
045    SCORE,
046    SECURITY_ROLE_GROUP_NAME,
047    SECURITY_ROLE_NAME,
048    SHIPPING_METHOD_NAME,
049    TITLE,
050    USE_NAME,
051    USE_TYPE_NAME,
052    VENDOR_NAME,
053    
054}