Codota Logo
DynamicPropertiesManager.contains
Code IndexAdd Codota to your IDE (free)

How to use
contains
method
in
org.eclipse.persistence.internal.dynamic.DynamicPropertiesManager

Best Java code snippets using org.eclipse.persistence.internal.dynamic.DynamicPropertiesManager.contains (Showing top 8 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

@Override
public boolean containsProperty(String propertyName) {
  return dpm.contains(propertyName);
}
origin: com.haulmont.thirdparty/eclipselink

public boolean containsProperty(String propertyName) {
  return dpm.contains(propertyName);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

public void checkSet(String propertyName, Object value) {
  if (contains(propertyName)) {
    type.checkSet(propertyName, value);
  }
  else {
    throw DynamicException.invalidPropertyName(type, propertyName);
  }
}
origin: com.haulmont.thirdparty/eclipselink

public void checkSet(String propertyName, Object value) {
  if (contains(propertyName)) {
    type.checkSet(propertyName, value);
  }
  else {
    throw DynamicException.invalidPropertyName(type, propertyName);
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

public boolean isSet(String propertyName) throws DynamicException {
  if (fetchPropertiesManager().contains(propertyName)) {
    if (_persistence_getFetchGroup() != null &&
        !_persistence_getFetchGroup().containsAttributeInternal(propertyName)) {
      return false;
    }
    PropertyWrapper wrapper = propertiesMap.get(propertyName);
    if (wrapper == null) { // properties can be added after constructor is called
      wrapper = new PropertyWrapper();
      propertiesMap.put(propertyName, wrapper);
    }
    return wrapper.isSet();
  }
  else {
    throw DynamicException.invalidPropertyName(fetchPropertiesManager().getType(),
        propertyName);
  }
}
origin: com.haulmont.thirdparty/eclipselink

public boolean isSet(String propertyName) throws DynamicException {
  if (fetchPropertiesManager().contains(propertyName)) {
    if (_persistence_getFetchGroup() != null &&
        !_persistence_getFetchGroup().containsAttributeInternal(propertyName)) {
      return false;
    }
    PropertyWrapper wrapper = propertiesMap.get(propertyName);
    if (wrapper == null) { // properties can be added after constructor is called
      wrapper = new PropertyWrapper();
      propertiesMap.put(propertyName, wrapper);
    }
    return wrapper.isSet();
  }
  else {
    throw DynamicException.invalidPropertyName(fetchPropertiesManager().getType(),
        propertyName);
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

public <T> T get(String propertyName) throws DynamicException {
  DynamicPropertiesManager dpm = fetchPropertiesManager();
  if (dpm.contains(propertyName)) {
    if (_persistence_getFetchGroup() != null) {
      String errorMsg = _persistence_getFetchGroup().onUnfetchedAttribute(this,
origin: com.haulmont.thirdparty/eclipselink

public <T> T get(String propertyName) throws DynamicException {
  DynamicPropertiesManager dpm = fetchPropertiesManager();
  if (dpm.contains(propertyName)) {
    if (_persistence_getFetchGroup() != null) {
      String errorMsg = _persistence_getFetchGroup().onUnfetchedAttribute(this,
org.eclipse.persistence.internal.dynamicDynamicPropertiesManagercontains

Popular methods of DynamicPropertiesManager

  • postConstruct
  • checkSet
  • createSlots
  • getInitializatonPolicy
  • getPropertyNames
  • getType
  • initializeSlotValues
  • setType

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • getExternalFilesDir (Context)
  • Kernel (java.awt.image)
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • JComboBox (javax.swing)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now