001// -------------------------------------------------------------------------------- 002// Copyright 2002-2024 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 CONTACT_MECHANISM_NAME, 022 CONTENT_CATEGORY_NAME, 023 CREATED_TIME, 024 CUSTOMER_NAME, 025 DEFAULT_DESCRIPTION, 026 DELETED_TIME, 027 DESCRIPTION, 028 ENTITY_TYPE_NAME, 029 FIRST_NAME, 030 HARMONIZED_TARIFF_SCHEDULE_CODE_NAME, 031 ITEM_NAME, 032 LAST_NAME, 033 LEAVE_NAME, 034 ENTITY_LIST_ITEM_NAME, 035 MODIFIED_TIME, 036 OFFER_NAME, 037 POSTED_TIME, 038 SALES_ORDER_NAME, 039 SALES_ORDER_BATCH_NAME, 040 SECURITY_ROLE_GROUP_NAME, 041 SECURITY_ROLE_NAME, 042 SCORE, 043 TITLE, 044 USE_NAME, 045 USE_TYPE_NAME, 046 VENDOR_NAME, 047 048}