OntologyProperty.getDependentPropertyIris
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.visallo.core.model.ontology.OntologyProperty.getDependentPropertyIris (Showing top 7 results out of 315)

origin: org.visallo/visallo-core

public boolean hasDependentPropertyIris() {
  return getDependentPropertyIris() != null && getDependentPropertyIris().size() > 0;
}
origin: org.visallo/visallo-core

@Override
public OntologyProperty getDependentPropertyParent(String iri, String workspaceId) {
  for (OntologyProperty property : getProperties(workspaceId)) {
    if (property.getDependentPropertyIris().contains(iri)) {
      return property;
    }
  }
  return null;
}
origin: org.visallo/visallo-web

for (String dependentPropertyIri : property.getDependentPropertyIris()) {
  if (values.get(dependentPropertyIri) == null) {
    VisibilityJson oldVisibilityJson = new VisibilityJson(oldVisibilitySource);
origin: org.visallo/visallo-core

for (String dependentPropertyIri : ontologyProperty.getDependentPropertyIris()) {
  properties.addAll(toList(e.getProperties(propertyKey, dependentPropertyIri)));
origin: org.visallo/visallo-core-test

    "            dependentProp('http://visallo.org/test#lastName')\n" +
    "            ]).join(', ')", nameProperty.getDisplayFormula().trim());
ImmutableList<String> dependentPropertyIris = nameProperty.getDependentPropertyIris();
assertEquals(3, dependentPropertyIris.size());
assertTrue(dependentPropertyIris.contains("http://visallo.org/test#firstName"));
origin: org.visallo/visallo-core-test

    "            dependentProp('http://visallo.org/test#lastName')\n" +
    "            ]).join(', ')", nameProperty.getDisplayFormula().trim());
ImmutableList<String> dependentPropertyIris = nameProperty.getDependentPropertyIris();
assertEquals(3, dependentPropertyIris.size());
assertTrue(dependentPropertyIris.contains("http://visallo.org/test#firstName"));
origin: org.visallo/visallo-core

result.setValidationFormula(getValidationFormula());
result.setDisplayFormula(getDisplayFormula());
result.setDependentPropertyIris(getDependentPropertyIris());
result.setDeleteable(getDeleteable());
result.setUpdateable(getUpdateable());
org.visallo.core.model.ontologyOntologyPropertygetDependentPropertyIris

Popular methods of OntologyProperty

  • getConceptIris
  • getDataType
  • getId
  • getRelationshipIris
  • getSandboxStatus
  • getIntents
  • getIri
  • convertString
  • getAddable
  • getDeleteable
  • getDisplayFormula
  • getDisplayName
  • getDisplayFormula,
  • getDisplayName,
  • getDisplayType,
  • getPossibleValues,
  • getPropertyGroup,
  • getTitle,
  • getUpdateable,
  • getValidationFormula,
  • removeIntent

Popular in Java

  • Start an intent from android
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • addToBackStack (FragmentTransaction)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)