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

org.dellroad.querystream.jpa.RootRef Maven / Gradle / Ivy


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

package org.dellroad.querystream.jpa;

import javax.persistence.criteria.Root;

/**
 * A {@link Ref} that's known to be a {@link Root}.
 *
 * @param  stream item type
 */
public class RootRef extends AbstractRef> {

    /**
     * Create an instance with no name.
     */
    public RootRef() {
    }

    /**
     * Create an instance with the given name.
     *
     * 

* The name is only used for debugging purposes. * * @param name reference name, or null for none */ public RootRef(String name) { super(name); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy