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

com.dragome.forms.bindings.builders.Order Maven / Gradle / Ivy

There is a newer version: 0.96-beta4
Show newest version
package com.dragome.forms.bindings.builders;

public enum Order
{
	ASC, DESC;

	public Order swap()
	{
		return this == ASC ? DESC : ASC;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy