All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.atlasmap.v2.StringMap Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
package io.atlasmap.v2;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonRootName;

@JsonRootName("StringMap")
public class StringMap implements Serializable {

    private static final long serialVersionUID = 1L;

    protected List stringMapEntry;

    /**
     * Gets the value of the stringMapEntry property.
     * 
     * 

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the stringMapEntry property. * *

* For example, to add a new item, do as follows: *

     *    getStringMapEntry().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link StringMapEntry } * * @return A list of {@link StringMapEntry} */ public List getStringMapEntry() { if (stringMapEntry == null) { stringMapEntry = new ArrayList(); } return this.stringMapEntry; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy