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

org.jsimpledb.RegularSimpleFieldIndexInfo Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package org.jsimpledb;

/**
 * Represents an index on a simple field that is not a sub-fied of a complex field.
 */
class RegularSimpleFieldIndexInfo extends SimpleFieldIndexInfo {

    RegularSimpleFieldIndexInfo(JSimpleField jfield) {
        super(jfield);
        assert jfield.parent instanceof JClass;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy