Codota Logo
Properties.putAll
Code IndexAdd Codota to your IDE (free)

How to use
putAll
method
in
uk.gov.gchq.gaffer.data.element.Properties

Best Java code snippets using uk.gov.gchq.gaffer.data.element.Properties.putAll (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
BufferedReader b =
  • Codota IconInputStream in;new BufferedReader(new InputStreamReader(in))
  • Codota IconReader in;new BufferedReader(in)
  • Codota IconFile file;new BufferedReader(new FileReader(file))
  • Smart code suggestions by Codota
}
origin: gchq/Gaffer

@Override
public void putAll(final Map<? extends String, ?> newProperties) {
  properties.putAll(newProperties);
  loadedProperties.addAll(newProperties.keySet());
}
origin: uk.gov.gchq.gaffer/data

@Override
public void putAll(final Map<? extends String, ?> newProperties) {
  properties.putAll(newProperties);
  loadedProperties.addAll(newProperties.keySet());
}
origin: uk.gov.gchq.gaffer/accumulo-store

private Properties nextRecordFound(final Key key, final Value value) {
  this.workKeyRef.set(key);
  try {
    source.next();
  } catch (final IOException e) {
    throw new RuntimeException(e);
  }
  final Properties properties;
  try {
    properties = elementConverter.getPropertiesFromColumnQualifier(group, key.getColumnQualifierData().getBackingArray());
    properties.putAll(elementConverter.getPropertiesFromColumnVisibility(group, key.getColumnVisibilityData().getBackingArray()));
    properties.putAll(elementConverter.getPropertiesFromTimestamp(group, key.getTimestamp()));
    properties.putAll(elementConverter.getPropertiesFromValue(group, value));
  } catch (final AccumuloElementConversionException e) {
    throw new RuntimeException(e);
  }
  return properties;
}
origin: uk.gov.gchq.gaffer/accumulo-store

properties.putAll(elementConverter.getPropertiesFromColumnQualifier(group, topColumnQualifier));
properties.putAll(elementConverter.getPropertiesFromColumnVisibility(group, topColumnVisibility));
properties.putAll(elementConverter.getPropertiesFromValue(group, topValue));
properties.putAll(elementConverter.getPropertiesFromTimestamp(group, topTimestamp));
if (null == groupBy) {
  if (null != schemaGroupBy) {
origin: uk.gov.gchq.gaffer/accumulo-store

  @Override
  public Object getProperty(final String name, final Properties lazyProperties) {
    if (null == eDef) {
      eDef = schema.getElement(group);
      if (null == eDef) {
        throw new IllegalArgumentException("Element definition for " + group + " could not be found in the schema");
      }
    }

    final Properties props;
    if (eDef.getGroupBy().contains(name)) {
      props = elementConverter.getPropertiesFromColumnQualifier(group, key.getColumnQualifierData().getBackingArray());
    } else if (name.equals(schema.getVisibilityProperty())) {
      props = elementConverter.getPropertiesFromColumnVisibility(group, key.getColumnVisibilityData().getBackingArray());
    } else if (name.equals(timestampProperty)) {
      props = elementConverter.getPropertiesFromTimestamp(group, key.getTimestamp());
    } else {
      props = elementConverter.getPropertiesFromValue(group, value);
    }
    lazyProperties.putAll(props);
    return props.get(name);
  }
}
origin: uk.gov.gchq.gaffer/accumulo-store

properties.putAll(elementConverter.getPropertiesFromColumnVisibility(group, workKey.getColumnVisibilityData().getBackingArray()));
properties.putAll(aggregatedProperties);
topValue = elementConverter.getValueFromProperties(group, properties);
topKey = new Key(workKey.getRowData().getBackingArray(), columnFamily,
uk.gov.gchq.gaffer.data.elementPropertiesputAll

Popular methods of Properties

  • get
  • <init>
  • put
  • remove
  • clone
  • entrySet
  • isEmpty
  • keepOnly
    Removes all properties with names that are not in the provided set.
  • keySet
  • size
  • clear
  • containsKey
  • clear,
  • containsKey,
  • containsValue,
  • equals,
  • hashCode,
  • toString,
  • values

Popular in Java

  • Updating database using SQL prepared statement
  • getContentResolver (Context)
  • putExtra (Intent)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Table (org.hibernate.mapping)
    A relational table
  • Logger (org.slf4j)
    The main user interface to logging. It is expected that logging takes place through concrete impleme
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