SquirrelJME/SquirrelJME

View on GitHub
modules/meep-rms/src/main/java/javax/microedition/rms/RecordComparator.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package javax.microedition.rms;

import cc.squirreljme.runtime.cldc.annotation.Api;

/**
 * This is an interface which defines a method for comparing records in an
 * implementation defined manner.
 *
 * As an example the comparator may be used by the {@link RecordEnumeration}
 * in the following manner:
 * {@code
 * RecordComparator comp = new CustomRecordComparator();
 * if (comp.compare(recordstore.getRecord(a), recordstore.getRecord(b)) ==
 *     RecordComparator.PRECEDES)
 *     return a;
 * }
 *
 * @see RecordEnumeration
 * @see RecordFilter
 * @since 2017/02/26
 */
@Api
public interface RecordComparator
{
    /** This represents two equal records. */
    @Api
    int EQUIVALENT =
        0;
    
    /** This represents a record that follows another. */
    @Api
    int FOLLOWS =
        1;
    
    /** This represents a record that precedes another. */
    @Api
    int PRECEDES =
        -1;
    
    /**
     * Compares the data in one record with the data in another record.
     *
     * @param __a The first record, the array must not be modified by the
     * comparator.
     * @param __b The second record, the array must not be modified by the
     * comparator.
     * @return The record comparison, one of {@link #EQUIVALENT},
     * {@link #FOLLOWS}, or {@link #PRECEDES}.
     * @since 2017/02/26
     */
    @Api
    int compare(byte[] __a, byte[] __b);
}