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

com.codetaco.funnel.orderby.Filler Maven / Gradle / Ivy

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

/**
 * 

* Filler class. *

* * @author Chris DeGreef [email protected] */ public class Filler extends KeyPart { /** {@inheritDoc} */ @Override public Object getContents() { return null; } /** {@inheritDoc} */ @Override public double getContentsAsDouble() { return 0; } /** {@inheritDoc} */ @Override public boolean isNumeric() { return false; } /** {@inheritDoc} */ @Override public void pack(final KeyContext context) throws Exception { // n/a } /** {@inheritDoc} */ @Override public void parseObjectFromRawData(final byte[] rawData) throws Exception { // n/a } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy