congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
IdentifierImpl
Code IndexAdd Tabnine to your IDE (free)

How to use
IdentifierImpl
in
org.apache.openjpa.lib.identifier

Best Java code snippets using org.apache.openjpa.lib.identifier.IdentifierImpl (Showing top 20 results out of 315)

origin: org.apache.openjpa/openjpa-all

public String toString() {
  return getName();
}

origin: org.apache.openjpa/openjpa-lib

public IdentifierImpl(String name) {
  setName(name);
}
origin: org.apache.openjpa/openjpa-jdbc

/**
 * Comparison operator for identifiers.
 */
public int compareTo(Identifier o) {
  if (o instanceof DBIdentifier) {
    if (this == DBIdentifier.NULL && (o == null || o == DBIdentifier.NULL)) {
      return 0;
    }
    if (this == DBIdentifier.NULL)
      return 1;
    if (o == null || o == DBIdentifier.NULL)
      return -1;
  }
  return super.compareTo(o);
}

origin: org.apache.openjpa/openjpa-jdbc

/**
 * The length of the name, including delimiting characters.
 */
public int length() {
  if (DBIdentifier.isNull(this)) {
    return 0;
  }
  return super.length();
}
origin: org.apache.openejb.patch/openjpa-jdbc

/**
 * The length of the name, including delimiting characters.
 */
public int length() {
  if (DBIdentifier.isNull(this)) {
    return 0;
  }
  return super.length();
}
origin: org.apache.openejb.patch/openjpa

private void setNameInternal(String name) {
  super.setName(name);
}
origin: org.apache.openjpa/openjpa-all

private String getNameInternal() {
  return super.getName();
}
origin: org.apache.openjpa/openjpa-all

/**
 * The length of the name, including delimiting characters.
 */
public int length() {
  if (DBIdentifier.isNull(this)) {
    return 0;
  }
  return super.length();
}
origin: org.apache.openejb.patch/openjpa-jdbc

/**
 * Comparison operator for identifiers.
 */
public int compareTo(Identifier o) {
  if (o instanceof DBIdentifier) {
    if (this == DBIdentifier.NULL && (o == null || o == DBIdentifier.NULL)) {
      return 0;
    }
    if (this == DBIdentifier.NULL)
      return 1;
    if (o == null || o == DBIdentifier.NULL)
      return -1;
  }
  return super.compareTo(o);
}

origin: org.apache.openjpa/openjpa-all

public IdentifierImpl(String name) {
  setName(name);
}
origin: org.apache.openejb.patch/openjpa-jdbc

private String getNameInternal() {
  return super.getName();
}
origin: org.apache.openejb.patch/openjpa

/**
 * The length of the name, including delimiting characters.
 */
public int length() {
  if (DBIdentifier.isNull(this)) {
    return 0;
  }
  return super.length();
}
origin: org.apache.openjpa/openjpa-all

/**
 * Comparison operator for identifiers.
 */
public int compareTo(Identifier o) {
  if (o instanceof DBIdentifier) {
    if (this == DBIdentifier.NULL && (o == null || o == DBIdentifier.NULL)) {
      return 0;
    }
    if (this == DBIdentifier.NULL)
      return 1;
    if (o == null || o == DBIdentifier.NULL)
      return -1;
  }
  return super.compareTo(o);
}

origin: org.apache.openjpa/openjpa-jdbc

private void setNameInternal(String name) {
  super.setName(name);
}
origin: org.apache.openejb.patch/openjpa

public String toString() {
  return getName();
}

origin: org.apache.openejb.patch/openjpa

/**
 * Comparison operator for identifiers.
 */
public int compareTo(Identifier o) {
  if (o instanceof DBIdentifier) {
    if (this == DBIdentifier.NULL && (o == null || o == DBIdentifier.NULL)) {
      return 0;
    }
    if (this == DBIdentifier.NULL)
      return 1;
    if (o == null || o == DBIdentifier.NULL)
      return -1;
  }
  return super.compareTo(o);
}

origin: org.apache.openejb.patch/openjpa

public IdentifierImpl(String name) {
  setName(name);
}
origin: org.apache.openejb.patch/openjpa

private String getNameInternal() {
  return super.getName();
}
origin: org.apache.openjpa/openjpa-all

private void setNameInternal(String name) {
  super.setName(name);
}
origin: org.apache.openjpa/openjpa-jdbc

private String getNameInternal() {
  return super.getName();
}
org.apache.openjpa.lib.identifierIdentifierImpl

Javadoc

Base identifer implementation.

Most used methods

  • getName
  • setName
  • compareTo
  • length

Popular in Java

  • Reactive rest calls using spring rest template
  • setContentView (Activity)
  • scheduleAtFixedRate (Timer)
  • getExternalFilesDir (Context)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now