index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/CivicAddress.java | package at.gridgears.held;
import org.apache.commons.lang3.builder.ToStringBuilder;
import java.io.Serializable;
import java.util.Objects;
public class CivicAddress implements Serializable {
private static final long serialVersionUID = 1L;
private String country;
private String a1;
private String a2... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/FindLocationCallback.java | package at.gridgears.held;
public interface FindLocationCallback {
void completed(FindLocationRequest request, FindLocationResult findLocationResult);
void failed(FindLocationRequest request, Exception exception);
}
|
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/FindLocationError.java | package at.gridgears.held;
import org.apache.commons.lang3.Validate;
import org.apache.commons.lang3.builder.ToStringBuilder;
import java.io.Serializable;
import java.util.Objects;
public class FindLocationError implements Serializable {
private static final long serialVersionUID = 1L;
private final String ... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/FindLocationRequest.java | package at.gridgears.held;
import org.apache.commons.lang3.Validate;
import org.apache.commons.lang3.builder.ToStringBuilder;
import javax.annotation.Nullable;
import java.io.Serializable;
import java.time.Duration;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Option... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/FindLocationResult.java | package at.gridgears.held;
import org.apache.commons.lang3.Validate;
import org.apache.commons.lang3.builder.ToStringBuilder;
import javax.annotation.Nullable;
import java.io.Serializable;
import java.util.*;
public final class FindLocationResult implements Serializable {
private static final long serialVersionU... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/Held.java | package at.gridgears.held;
public interface Held {
void findLocation(FindLocationRequest request, FindLocationCallback callback);
}
|
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/HeldBuilder.java | package at.gridgears.held;
import at.gridgears.held.internal.HeldClient;
import at.gridgears.held.internal.HeldClientConfig;
import org.apache.commons.lang3.Validate;
import org.apache.http.Header;
import org.apache.http.message.BasicHeader;
import javax.annotation.Nullable;
import java.net.URI;
import java.util.Link... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/Location.java | package at.gridgears.held;
import org.apache.commons.lang3.builder.ToStringBuilder;
import java.io.Serializable;
import java.time.Instant;
import java.util.Objects;
import java.util.Optional;
public class Location implements Serializable {
private static final long serialVersionUID = 1L;
private final doubl... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/LocationReference.java | package at.gridgears.held;
import org.apache.commons.lang3.builder.ToStringBuilder;
import java.io.Serializable;
import java.net.URI;
import java.time.Instant;
import java.util.Objects;
public class LocationReference implements Serializable {
private static final long serialVersionUID = 1L;
private final UR... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/PositioningMethod.java | package at.gridgears.held;
public enum PositioningMethod {
GNSS,
WIFI,
CELL,
NO_LOCATION,
UNKNOWN
}
|
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/FindLocationRequestFactory.java | package at.gridgears.held.internal;
import at.gridgears.held.FindLocationRequest;
import org.apache.commons.lang3.Validate;
import org.apache.http.Header;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.apache.http.messag... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/FindLocationRequestMarshaller.java | package at.gridgears.held.internal;
import at.gridgears.held.FindLocationRequest;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import org.apache.commons.lang3.NotImplementedException;
@SuppressFBWarnings("VA_FORMAT_STRING_USES_NEWLINE")
class FindLocationRequestMarshaller {
String marshall(FindLocat... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/HeldClient.java | package at.gridgears.held.internal;
import at.gridgears.held.FindLocationCallback;
import at.gridgears.held.FindLocationRequest;
import at.gridgears.held.FindLocationResult;
import at.gridgears.held.Held;
import at.gridgears.held.internal.parser.ResponseParser;
import at.gridgears.held.internal.parser.ResponseParsing... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/HeldClientConfig.java | package at.gridgears.held.internal;
import org.apache.commons.lang3.Validate;
import org.apache.http.Header;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class HeldClientConfig {
private final URI uri;
private final String language;
private ... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/HeldException.java | package at.gridgears.held.internal;
public class HeldException extends Exception {
HeldException(String errorType, String message) {
super(errorType + ": " + message);
}
} |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/AmlDataParser.java | package at.gridgears.held.internal.parser;
import at.gridgears.held.AmlData;
import at.gridgears.held.PositioningMethod;
import at.gridgears.schemas.held.AmlType;
import at.gridgears.schemas.held.PositioningMethodType;
import org.apache.commons.lang3.StringUtils;
import org.apache.logging.log4j.LogManager;
import org.... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/CivicAddressParser.java | package at.gridgears.held.internal.parser;
import at.gridgears.held.CivicAddress;
import at.gridgears.schemas.held.*;
import java.util.LinkedList;
import java.util.List;
import java.util.Optional;
import static at.gridgears.held.internal.parser.ParseUtils.getStringValue;
final class CivicAddressParser {
List<Ci... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/ErrorResultParser.java | package at.gridgears.held.internal.parser;
import at.gridgears.held.FindLocationError;
import at.gridgears.schemas.held.ErrorMsgType;
import at.gridgears.schemas.held.ErrorType;
import org.apache.commons.lang3.Validate;
import java.util.List;
class ErrorResultParser {
private static final String DEFAULT_LANGUAGE... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/LocationParser.java | package at.gridgears.held.internal.parser;
import at.gridgears.held.AmlData;
import at.gridgears.held.Location;
import at.gridgears.schemas.held.*;
import org.apache.commons.lang3.mutable.MutableObject;
import javax.annotation.Nullable;
import javax.xml.datatype.XMLGregorianCalendar;
import java.time.Instant;
import ... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/LocationReferenceParser.java | package at.gridgears.held.internal.parser;
import at.gridgears.held.LocationReference;
import at.gridgears.schemas.held.LocationResponseType;
import at.gridgears.schemas.held.ReturnLocationType;
import org.apache.commons.lang3.mutable.MutableObject;
import java.net.URI;
import java.time.Instant;
import java.util.Link... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/ParseUtils.java | package at.gridgears.held.internal.parser;
import at.gridgears.schemas.held.CaType;
import javax.xml.bind.JAXBElement;
import javax.xml.datatype.XMLGregorianCalendar;
import java.time.Instant;
import java.util.List;
import java.util.Optional;
final class ParseUtils {
private ParseUtils() {
//must not be ... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/ResponseParser.java | package at.gridgears.held.internal.parser;
import at.gridgears.held.CivicAddress;
import at.gridgears.held.FindLocationResult;
import at.gridgears.held.Location;
import at.gridgears.held.LocationReference;
import at.gridgears.schemas.held.AmlType;
import at.gridgears.schemas.held.ErrorType;
import at.gridgears.schema... |
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/ResponseParsingException.java | package at.gridgears.held.internal.parser;
public class ResponseParsingException extends Exception {
ResponseParsingException(String message) {
super(message);
}
ResponseParsingException(String message, Throwable cause) {
super(message, cause);
}
}
|
0 | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal | java-sources/at/gridgears/held-api/1.1.0/at/gridgears/held/internal/parser/SuccessResultParser.java | package at.gridgears.held.internal.parser;
import at.gridgears.held.CivicAddress;
import at.gridgears.held.Location;
import at.gridgears.held.LocationReference;
import at.gridgears.schemas.held.LocationResponseType;
import org.apache.commons.lang3.tuple.Triple;
import java.util.List;
class SuccessResultParser {
... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AbstractGMLType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AbstractGeometricPrimitiveType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AbstractGeometryType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AbstractRingPropertyType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AbstractRingType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AbstractSolidType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AbstractSurfaceType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AdditionalLocationsType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AmlType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/AngleType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/ArcBandType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/BaseRequestType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/Basic.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/CaType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/CircleType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/CivicAddress.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/CodeType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/Contact.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/CoordType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/CoordinatesType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/DeviceIdentity.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/DirectPositionType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/EllipseType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/EllipsoidType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/ErrorMsgType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/ErrorType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/Geopriv.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/IpAddress.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/LengthType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/LocInfoType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/LocMethod.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/LocPolicyType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/LocProvidedBy.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/LocationRequestType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/LocationResponseType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/LocationTypeType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/MeasureType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/MetaDataPropertyType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/Note.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/Notewell.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/ObjectFactory.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/PointPropertyType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/PointType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/PolygonType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/PositioningMethodType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/Presence.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/PrismType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/ReturnLocationType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/SphereType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/Status.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/StringOrRefType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/SurfacePropertyType.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/Tuple.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas | java-sources/at/gridgears/schemas/held/2.0.0/at/gridgears/schemas/held/package-info.java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.19 at 09:29:... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/Lambda.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/BooleanConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ByteConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/CharConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/Consumer2.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/DoubleConsumer2.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/FloatConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/IntConsumer2.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/LongConsumer2.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ShortConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableBooleanConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableByteConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableCharConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableDoubleConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableFloatConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableIntConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableLongConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/ThrowableShortConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/bi/BiBooleanConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/bi/BiByteConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
0 | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer | java-sources/at/gridtec/lambda4j/lambda4j/1.0.0/at/gridtec/lambda4j/consumer/bi/BiCharConsumer.java | /*
* Copyright (c) 2016 Gridtec. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.