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

How to use
getIdentifierDelimiter
method
in
org.apache.openjpa.lib.identifier.IdentifierConfiguration

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

origin: org.apache.openjpa/openjpa-all

public boolean canSplit(IdentifierRule rule, String name) {
  return canSplit(rule, name, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-all

public String[] splitName(IdentifierConfiguration config, IdentifierRule nrule, String name) {
  return splitName(nrule, name, config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-lib

public String[] splitName(IdentifierRule nrule, String name) {
  return splitName(nrule, name, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-all

public String[] splitName(IdentifierRule nrule, String name) {
  return splitName(nrule, name, _config.getIdentifierDelimiter());
}
origin: org.apache.openejb.patch/openjpa

public String joinNames(IdentifierRule rule, String[] names) {
  return joinNames(_config, rule, names, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-lib

public String[] splitName(IdentifierConfiguration config, IdentifierRule nrule, String name) {
  return splitName(nrule, name, config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-lib

public boolean canSplit(IdentifierRule rule, String name) {
  return canSplit(rule, name, _config.getIdentifierDelimiter());
}
origin: org.apache.openejb.patch/openjpa

public boolean canSplit(IdentifierRule rule, String name) {
  return canSplit(rule, name, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-all

public String joinNames(IdentifierRule rule, String[] names) {
  return joinNames(_config, rule, names, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-lib

public String joinNames(IdentifierRule rule, String[] names) {
  return joinNames(_config, rule, names, _config.getIdentifierDelimiter());
}
origin: org.apache.openejb.patch/openjpa

public String[] splitName(IdentifierConfiguration config, IdentifierRule nrule, String name) {
  return splitName(nrule, name, config.getIdentifierDelimiter());
}
origin: org.apache.openejb.patch/openjpa

public String[] splitName(IdentifierRule nrule, String name) {
  return splitName(nrule, name, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-lib

public boolean canSplit(String rule, String name) {
  return canSplit(getNamingRule(rule), name, _config.getIdentifierDelimiter());
}
origin: org.apache.openejb.patch/openjpa

public String joinNames(String rule, String[] names) {
  return joinNames(_config, getNamingRule(rule), names, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-all

public String joinNames(String rule, String[] names) {
  return joinNames(_config, getNamingRule(rule), names, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-all

public boolean canSplit(String rule, String name) {
  return canSplit(getNamingRule(rule), name, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-lib

public String joinNames(String rule, String[] names) {
  return joinNames(_config, getNamingRule(rule), names, _config.getIdentifierDelimiter());
}
origin: org.apache.openjpa/openjpa-all

public String combineFull(IdentifierConfiguration config, String rule, String fullName) {
  if (!needsConversion(config)) {
    return fullName;
  }
  // Split
  String[] names = splitName(config, rule, fullName);
  // Convert
  for (int i = 0; i < names.length; i++) {
    names[i] = convert(config, rule, names[i]);
  }
  // Join
  return joinNames(config, config.getIdentifierRule(rule), names, config.getIdentifierDelimiter());
}    
origin: org.apache.openjpa/openjpa-lib

public String combineFull(IdentifierConfiguration config, String rule, String fullName) {
  if (!needsConversion(config)) {
    return fullName;
  }
  // Split
  String[] names = splitName(config, rule, fullName);
  // Convert
  for (int i = 0; i < names.length; i++) {
    names[i] = convert(config, rule, names[i]);
  }
  // Join
  return joinNames(config, config.getIdentifierRule(rule), names, config.getIdentifierDelimiter());
}    
origin: org.apache.openejb.patch/openjpa

public String combineFull(IdentifierConfiguration config, String rule, String fullName) {
  if (!needsConversion(config)) {
    return fullName;
  }
  // Split
  String[] names = splitName(config, rule, fullName);
  // Convert
  for (int i = 0; i < names.length; i++) {
    names[i] = convert(config, rule, names[i]);
  }
  // Join
  return joinNames(config, config.getIdentifierRule(rule), names, config.getIdentifierDelimiter());
}    
org.apache.openjpa.lib.identifierIdentifierConfigurationgetIdentifierDelimiter

Javadoc

Returns the value used to delimit between individual names. For example: "." used in MYSCHEMA.MYTABLE

Popular methods of IdentifierConfiguration

  • getIdentifierRule
    Returns a naming rule or null if the rule is not found.
  • getLeadingDelimiter
    Returns the leading delimiter value to use when delimiting a name.
  • getTrailingDelimiter
    Returns the trailing delimiter value to use when delimiting a name.
  • delimitAll
    Returns true if global name delimiting is enabled.
  • getDefaultIdentifierRule
    Gets the default naming rule
  • getDelimitedCase
    Returns the case that is used when delimiting.
  • getSchemaCase
    Returns the case that is used when delimiters are not used.
  • getSupportsDelimitedIdentifiers
    Returns true if delimiting is supported
  • getConversionKey
    Returns a key that can be used to determine whether conversion should take place. Id configurations
  • getIdentifierConcatenator
    Returns the value used to concatenate multiple names together. For example: "_" used in TABLE1_TABLE

Popular in Java

  • Running tasks concurrently on multiple threads
  • onRequestPermissionsResult (Fragment)
  • putExtra (Intent)
  • startActivity (Activity)
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • JFileChooser (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Top 12 Jupyter Notebook extensions
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