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

org.eclipse.persistence.mappings.querykeys.QueryKey Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1998, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0,
 * or the Eclipse Distribution License v. 1.0 which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
 */

// Contributors:
//     Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.mappings.querykeys;

import java.io.*;

import org.eclipse.persistence.descriptors.ClassDescriptor;

/**
 * 

* Purpose: Define a Java appropriate alias to a database field or function. *

* Responsibilities: *

    *
  • Define the name of the alias. *
  • Define the descriptor of the alias. *
*/ public class QueryKey implements Cloneable, Serializable { protected String name; protected ClassDescriptor descriptor; /** * INTERNAL: * Clones itself. */ public Object clone() { Object object = null; try { object = super.clone(); } catch (Exception exception) { throw new InternalError(exception.toString()); } return object; } /** * INTERNAL: * Convert all the class-name-based settings in this QueryKey to actual class-based * settings * Will be overridded by subclasses * @param classLoader */ public void convertClassNamesToClasses(ClassLoader classLoader){} /** * INTERNAL: * Return the descriptor. */ public ClassDescriptor getDescriptor() { return descriptor; } /** * PUBLIC: * Return the name for the query key. * This is the name that will be used in the expression. */ public String getName() { return name; } /** * INTERNAL: * Initialize any information in the receiver that requires its descriptor. * Set the receiver's descriptor back reference. * @param aDescriptor is the owner descriptor of the receiver. */ public void initialize(ClassDescriptor aDescriptor) { setDescriptor(aDescriptor); } /** * INTERNAL: * return whether this query key is abstract * @return boolean */ public boolean isAbstractQueryKey() { return (this.getClass().equals(org.eclipse.persistence.internal.helper.ClassConstants.QueryKey_Class)); } /** * PUBLIC:: * Related query key should implement this method to return true. */ public boolean isCollectionQueryKey() { return false; } /** * PUBLIC:: * Related query key should implement this method to return true. */ public boolean isDirectCollectionQueryKey() { return false; } /** * PUBLIC:: * Related query key should implement this method to return true. */ public boolean isDirectQueryKey() { return false; } /** * PUBLIC:: * Related query key should implement this method to return true. */ public boolean isForeignReferenceQueryKey() { return false; } /** * PUBLIC:: * Related query key should implement this method to return true. */ public boolean isManyToManyQueryKey() { return false; } /** * PUBLIC:: * Related query key should implement this method to return true. */ public boolean isOneToManyQueryKey() { return false; } /** * PUBLIC:: * Related query key should implement this method to return true. */ public boolean isOneToOneQueryKey() { return false; } /** * INTERNAL: * This is a QueryKey. return true. * @return boolean */ public boolean isQueryKey() { return true; } /** * INTERNAL: * Set the descriptor. */ public void setDescriptor(ClassDescriptor descriptor) { this.descriptor = descriptor; } /** * PUBLIC: * Set the name for the query key. * This is the name that will be used in the expression. */ public void setName(String name) { this.name = name; } /** * INTERNAL: * return a string representation of this instance of QueryKey */ public String toString() { return org.eclipse.persistence.internal.helper.Helper.getShortClassName(this) + "(" + getName() + ")"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy