Examples of CObjectOrdering


Examples of com.pardot.rhombus.cobject.CObjectOrdering

public class CObjectOrderingTest {
  private static final Logger logger = LoggerFactory.getLogger(CObjectOrderingTest.class);

  @Test
  public void testFromString() {
    CObjectOrdering ordering;
    ordering = CObjectOrdering.fromString("ASC");
    assertEquals(CObjectOrdering.ASCENDING, ordering);
    ordering = CObjectOrdering.fromString("DESC");
    assertEquals(CObjectOrdering.DESCENDING, ordering);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.