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

com.jidesoft.range.Positionable Maven / Gradle / Ivy

There is a newer version: 3.6.18
Show newest version
/*
 * @(#)Positionable.java
 * 
 * 2002 - 2012 JIDE Software Incorporated. All rights reserved.
 * Copyright (c) 2005 - 2012 Catalysoft Limited. All rights reserved.
 */

package com.jidesoft.range;

/**
 * The idea of being positionable is to place a point somewhere along a one-dimensional axis
 * This is very natural for numerical data, but can be applied to categorical data too.
 * @author Simon White ([email protected])
 */
public interface Positionable extends Comparable {
    /**
     * Map the Positionable object to a numeric value (a double) so that it can be positioned on an axis.
     * @return the position of the object
     */
	double position();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy