001// 002// Name 003// $RCSfile: KeyOrderedBy.java,v $ 004// 005// Copyright 006// Confidential Property of Kabira Technologies, Inc. 007// Copyright 2009 by Kabira Technologies, Inc. 008// All rights reserved. 009// 010// History 011// $Revision: 1.1.2.1 $ $Date: 2009/08/18 00:13:40 $ 012// 013package com.kabira.platform; 014 015/** 016 * Orderby values supported in range query results. 017 */ 018public enum KeyOrderedBy 019{ 020 /** Order results in ascending order */ 021 ASCENDING, 022 /** Order results in descending order */ 023 DESCENDING 024}