All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codetaco.funnel.parameters.OrderBy Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.codetaco.funnel.parameters;

import com.codetaco.argument.annotation.Arg;
import com.codetaco.funnel.orderby.KeyDirection;

/**
 * 

* OrderBy class. *

* * @author Chris DeGreef [email protected] */ public class OrderBy { @Arg(positional = true, required = true, allowCamelCaps = true, help = "A previously defined column name.") public String columnName; @Arg(shortName = 'd', positional = true, defaultValues = "ASC", help = "The direction of the sort for this key. AASC and ADESC are absolute values of the key - the case of letters would not matter and the sign of numbers would not matter.") public KeyDirection direction; /** *

* Constructor for OrderBy. *

*/ public OrderBy() { super(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy