repo stringclasses 1k
values | file_url stringlengths 96 373 | file_path stringlengths 11 294 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 6
values | commit_sha stringclasses 1k
values | retrieved_at stringdate 2026-01-04 14:45:56 2026-01-04 18:30:23 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/api/AllFieldsAreRequired.java | PokeDex/src/main/java/me/grishka/examples/pokedex/api/AllFieldsAreRequired.java | package me.grishka.examples.pokedex.api;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface AllFieldsAreRequired{
}
| java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/api/PokeAPIRequest.java | PokeDex/src/main/java/me/grishka/examples/pokedex/api/PokeAPIRequest.java | package me.grishka.examples.pokedex.api;
import android.util.Log;
import com.google.gson.reflect.TypeToken;
import java.io.IOException;
import java.util.List;
import androidx.annotation.CallSuper;
import me.grishka.appkit.api.APIRequest;
import me.grishka.appkit.api.ErrorResponse;
import me.grishka.examples.pokedex... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/api/ObjectValidationException.java | PokeDex/src/main/java/me/grishka/examples/pokedex/api/ObjectValidationException.java | package me.grishka.examples.pokedex.api;
import java.io.IOException;
public class ObjectValidationException extends IOException{
public ObjectValidationException(){
}
public ObjectValidationException(String message){
super(message);
}
public ObjectValidationException(String message, Throwable cause){
super... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/api/PokeAPIErrorResponse.java | PokeDex/src/main/java/me/grishka/examples/pokedex/api/PokeAPIErrorResponse.java | package me.grishka.examples.pokedex.api;
import android.content.Context;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
import me.grishka.appkit.api.ErrorResponse;
public class PokeAPIErrorResponse extends ErrorResponse{
public final String error;
public final int httpStatus... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/api/requests/GetPokemonList.java | PokeDex/src/main/java/me/grishka/examples/pokedex/api/requests/GetPokemonList.java | package me.grishka.examples.pokedex.api.requests;
import android.net.Uri;
import com.google.gson.reflect.TypeToken;
import me.grishka.examples.pokedex.api.PokeAPIRequest;
import me.grishka.examples.pokedex.model.ListPokemon;
import me.grishka.examples.pokedex.model.PaginatedList;
public class GetPokemonList extends... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/api/requests/GetPokemonDetails.java | PokeDex/src/main/java/me/grishka/examples/pokedex/api/requests/GetPokemonDetails.java | package me.grishka.examples.pokedex.api.requests;
import me.grishka.examples.pokedex.api.PokeAPIRequest;
import me.grishka.examples.pokedex.model.PokemonDetailsResponse;
public class GetPokemonDetails extends PokeAPIRequest<PokemonDetailsResponse>{
public GetPokemonDetails(String url){
super(PokemonDetailsResponse... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/api/caching/DatabaseRunnable.java | PokeDex/src/main/java/me/grishka/examples/pokedex/api/caching/DatabaseRunnable.java | package me.grishka.examples.pokedex.api.caching;
import android.database.sqlite.SQLiteDatabase;
import java.io.IOException;
@FunctionalInterface
public interface DatabaseRunnable{
void run(SQLiteDatabase db) throws IOException;
}
| java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/api/caching/PokemonCache.java | PokeDex/src/main/java/me/grishka/examples/pokedex/api/caching/PokemonCache.java | package me.grishka.examples.pokedex.api.caching;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
import android.os.Handler;
import android.os.Looper;
imp... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/views/AnimatedLabeledProgressBar.java | PokeDex/src/main/java/me/grishka/examples/pokedex/views/AnimatedLabeledProgressBar.java | package me.grishka.examples.pokedex.views;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.ObjectAnimator;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.g... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/fragments/PokemonListFragment.java | PokeDex/src/main/java/me/grishka/examples/pokedex/fragments/PokemonListFragment.java | package me.grishka.examples.pokedex.fragments;
import android.content.res.ColorStateList;
import android.content.res.Configuration;
import android.content.res.TypedArray;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.os.Bundle;
import android.view.View... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
grishka/poke.dex | https://github.com/grishka/poke.dex/blob/229c925988509b06b824079f8202c0a5001116f7/PokeDex/src/main/java/me/grishka/examples/pokedex/fragments/PokemonDetailsFragment.java | PokeDex/src/main/java/me/grishka/examples/pokedex/fragments/PokemonDetailsFragment.java | package me.grishka.examples.pokedex.fragments;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.app.Activity;
import android.content.res.ColorStateList;
import android.graphics.Outline;
imp... | java | Unlicense | 229c925988509b06b824079f8202c0a5001116f7 | 2026-01-05T02:37:37.848615Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/PacketEncoder.java | src/main/java/com/github/puregero/minecraftstresstest/PacketEncoder.java | package com.github.puregero.minecraftstresstest;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder;
public class PacketEncoder extends MessageToByteEncoder<ByteBuf> {
protected void encode(ChannelHandlerContext channelHandlerContext, ... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/FriendlyDataInputStream.java | src/main/java/com/github/puregero/minecraftstresstest/FriendlyDataInputStream.java | package com.github.puregero.minecraftstresstest;
import java.io.*;
import java.nio.charset.StandardCharsets;
import java.util.UUID;
public class FriendlyDataInputStream extends DataInputStream {
public FriendlyDataInputStream(InputStream in) {
super(in);
}
public int readVarInt() throws IOExcept... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/PacketIds.java | src/main/java/com/github/puregero/minecraftstresstest/PacketIds.java | package com.github.puregero.minecraftstresstest;
public final class PacketIds {
private PacketIds() {
}
public static final class Clientbound {
private Clientbound() {
}
public static final class Login {
private Login() {
}
public static final ... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/CompressionDecoder.java | src/main/java/com/github/puregero/minecraftstresstest/CompressionDecoder.java | package com.github.puregero.minecraftstresstest;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ByteToMessageDecoder;
import java.nio.ByteBuffer;
import java.util.List;
import java.util.zip.Inflater;
public class CompressionDecoder extends ByteToMessageDe... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/Bot.java | src/main/java/com/github/puregero/minecraftstresstest/Bot.java | package com.github.puregero.minecraftstresstest;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
import io.netty.channel.socket.SocketChannel;
import java.nio.charset.StandardCharsets;
import java.util.UUID;
import java.util.concurre... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/CompressionEncoder.java | src/main/java/com/github/puregero/minecraftstresstest/CompressionEncoder.java | package com.github.puregero.minecraftstresstest;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder;
public class CompressionEncoder extends MessageToByteEncoder<ByteBuf> {
protected void encode(ChannelHandlerContext channelHandlerCont... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/FriendlyByteBuf.java | src/main/java/com/github/puregero/minecraftstresstest/FriendlyByteBuf.java | package com.github.puregero.minecraftstresstest;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import io.netty.handler.codec.DecoderException;
import io.netty.handler.codec.EncoderException;
import io.netty.util.ByteProcessor;
import java.io.IOException;
import java.io.InputStream;
import j... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/CommandLine.java | src/main/java/com/github/puregero/minecraftstresstest/CommandLine.java | package com.github.puregero.minecraftstresstest;
import java.util.Scanner;
public class CommandLine implements Runnable {
@Override
public void run() {
Scanner scanner = new Scanner(System.in);
while (scanner.hasNext()) {
String line = scanner.nextLine();
String[] arg... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/PacketDecoder.java | src/main/java/com/github/puregero/minecraftstresstest/PacketDecoder.java | package com.github.puregero.minecraftstresstest;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ByteToMessageDecoder;
import java.util.List;
public class PacketDecoder extends ByteToMessageDecoder {
@Override
protected void decode(ChannelHandlerC... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/FriendlyDataOutputStream.java | src/main/java/com/github/puregero/minecraftstresstest/FriendlyDataOutputStream.java | package com.github.puregero.minecraftstresstest;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.StandardCharsets;
import java.util.UUID;
public class FriendlyDataOutputStream extends DataOutputStream {
public... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
PureGero/minecraft-stress-test | https://github.com/PureGero/minecraft-stress-test/blob/98d002c7f0e096556104959c03c7c302661fb3d8/src/main/java/com/github/puregero/minecraftstresstest/MinecraftStressTest.java | src/main/java/com/github/puregero/minecraftstresstest/MinecraftStressTest.java | package com.github.puregero.minecraftstresstest;
import io.netty.bootstrap.Bootstrap;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.epoll.Epoll;
import io.netty.channel.epoll.EpollEventLoopGroup;
import io.netty.channe... | java | MIT | 98d002c7f0e096556104959c03c7c302661fb3d8 | 2026-01-05T02:37:38.694007Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/stream/EDIValidationExceptionTest.java | src/test/java/io/xlate/edi/stream/EDIValidationExceptionTest.java | package io.xlate.edi.stream;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
class EDIValidationExceptionTest {
@Test
void testSetNextException() {
EDIValidationException[] exceptions = { new EDIValidationException(null, null, null, null),
... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/test/StaEDITestEvent.java | src/test/java/io/xlate/edi/test/StaEDITestEvent.java | package io.xlate.edi.test;
import java.util.Objects;
import io.xlate.edi.stream.EDIStreamEvent;
import io.xlate.edi.stream.EDIStreamReader;
import io.xlate.edi.stream.EDIStreamValidationError;
import io.xlate.edi.stream.Location;
public class StaEDITestEvent {
public final EDIStreamEvent event;
public final... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/test/StaEDITestUtil.java | src/test/java/io/xlate/edi/test/StaEDITestUtil.java | package io.xlate.edi.test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.io.InputStream;
import java.net.URL;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import io.xlate.edi.schema.Schema;
import io.xlate.edi.schema.SchemaFactory;
import io.xlate.edi.stream.EDI... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/test/StaEDIReaderTestBase.java | src/test/java/io/xlate/edi/test/StaEDIReaderTestBase.java | package io.xlate.edi.test;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import org.junit.jupiter.api.BeforeEach;
import io.xlate.edi.schema.Schema;
import io.xlate.edi.schema.SchemaFactory;
import io.xlate.edi.stream.EDIInputFactory;
import io.xlate... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIFilteredStreamReaderTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIFilteredStreamReaderTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/SegmentValidationTest.java | src/test/java/io/xlate/edi/internal/stream/SegmentValidationTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | true |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/CharArraySequenceTest.java | src/test/java/io/xlate/edi/internal/stream/CharArraySequenceTest.java | package io.xlate.edi.internal.stream;
import static org.junit.jupiter.api.Assertions.*;
import java.nio.CharBuffer;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class CharArraySequenceTest {
CharArraySequence target;
@BeforeEach
void setUp() {
target = new CharAr... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIStreamReaderSyntaxTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIStreamReaderSyntaxTest.java | package io.xlate.edi.internal.stream;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/ErrorEventsTest.java | src/test/java/io/xlate/edi/internal/stream/ErrorEventsTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | true |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIXMLStreamWriterTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIXMLStreamWriterTest.java | package io.xlate.edi.internal.stream;
import static io.xlate.edi.test.StaEDITestUtil.assertEqualsNormalizeLineSeparators;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import st... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIStreamReaderTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIStreamReaderTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | true |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIOutputFactoryTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIOutputFactoryTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/ConstantsTest.java | src/test/java/io/xlate/edi/internal/stream/ConstantsTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIXMLStreamReaderTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIXMLStreamReaderTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | true |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/CompositeValidationTest.java | src/test/java/io/xlate/edi/internal/stream/CompositeValidationTest.java | /*******************************************************************************
* Copyright 2020 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/EventSequenceTest.java | src/test/java/io/xlate/edi/internal/stream/EventSequenceTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIStreamReaderExtraneousCharsTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIStreamReaderExtraneousCharsTest.java | /*******************************************************************************
* Copyright 2020 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIInputFactoryTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIInputFactoryTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/StaEDIStreamWriterTest.java | src/test/java/io/xlate/edi/internal/stream/StaEDIStreamWriterTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | true |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/tokenization/DialectFactoryTest.java | src/test/java/io/xlate/edi/internal/stream/tokenization/DialectFactoryTest.java | package io.xlate.edi.internal.stream.tokenization;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import org.junit.jupiter.api.Test;
class DialectFactoryTest {
static char[] X12 = { '\0', 'I', 'S', 'A', '\0' };
static char[] EDIFACT_... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/tokenization/CharacterSetTest.java | src/test/java/io/xlate/edi/internal/stream/tokenization/CharacterSetTest.java | package io.xlate.edi.internal.stream.tokenization;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
class CharacterSetTest {
@Test
void te... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/tokenization/X12DialectTest.java | src/test/java/io/xlate/edi/internal/stream/tokenization/X12DialectTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/tokenization/EDIFACTDialectTest.java | src/test/java/io/xlate/edi/internal/stream/tokenization/EDIFACTDialectTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/tokenization/LexerTest.java | src/test/java/io/xlate/edi/internal/stream/tokenization/LexerTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/ConditionSyntaxValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/ConditionSyntaxValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.nullable;
import static org.mockito.Mockito.doAnswer;
import static org... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/DateValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/DateValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import java.util.stream... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/TimeValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/TimeValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.mo... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/PairedSyntaxValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/PairedSyntaxValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.argThat;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.nullable;
import st... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/RequiredSyntaxValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/RequiredSyntaxValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.argThat;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.nullable;
import st... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/NumericValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/NumericValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import org.junit.jupit... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/DecimalValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/DecimalValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import io.xlate.edi.internal.stream.tokenization.CharacterSet;
import io.xlate.edi.internal.stream.tokenization.Dialect;
import io.... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/ValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/ValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertSame;
import org.junit.jupiter.api.Test;
import io.xlate.edi.schema.EDIReference;
import io.xla... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/SingleSyntaxValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/SingleSyntaxValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.nullable;
import static org.mockito.Mockito.doAnswer;
import static org... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/SyntaxValidatorTestBase.java | src/test/java/io/xlate/edi/internal/stream/validation/SyntaxValidatorTestBase.java | package io.xlate.edi.internal.stream.validation;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import org.junit.jupiter.api.BeforeEach;
import io.xlate.edi.internal.stream.tokenization.ValidationEventHandler;
import io.xlate.edi.schema.EDIReference;
import io.xlate.edi.schema.EDISyn... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/ValueSetTester.java | src/test/java/io/xlate/edi/internal/stream/validation/ValueSetTester.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/ExclusionSyntaxValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/ExclusionSyntaxValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.nullable;
import static org.mockito.Mockito.doAnswer;
import static org... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/AlphaNumericValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/AlphaNumericValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import org.junit.jupit... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/validation/ListSyntaxValidatorTest.java | src/test/java/io/xlate/edi/internal/stream/validation/ListSyntaxValidatorTest.java | package io.xlate.edi.internal.stream.validation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.nullable;
import static org.mockito.Mockito.doAnswer;
import static org... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/json/StaEDIJsonParserTest.java | src/test/java/io/xlate/edi/internal/stream/json/StaEDIJsonParserTest.java | package io.xlate.edi.internal.stream.json;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jup... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/json/JsonParserInvoker.java | src/test/java/io/xlate/edi/internal/stream/json/JsonParserInvoker.java | package io.xlate.edi.internal.stream.json;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.stream.Stream;
interface JsonParserInvoker {
@SuppressWarnings("unchecked")
default <T> T invoke(Object instance, String methodName, Class<... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/stream/json/StaEDIJacksonJsonParserTest.java | src/test/java/io/xlate/edi/internal/stream/json/StaEDIJacksonJsonParserTest.java | package io.xlate.edi.internal.stream.json;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jup... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/bind/AcknowledgementBindTest.java | src/test/java/io/xlate/edi/internal/bind/AcknowledgementBindTest.java | package io.xlate.edi.internal.bind;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.M... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/bind/TransactionBindTest.java | src/test/java/io/xlate/edi/internal/bind/TransactionBindTest.java | package io.xlate.edi.internal.bind;
import static org.junit.jupiter.api.Assertions.fail;
import java.io.IOException;
import java.io.StringWriter;
import java.lang.annotation.Annotation;
import java.lang.reflect.AccessibleObject;
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.Date;
import java.... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/wiki/WriteEdifactExampleTest.java | src/test/java/io/xlate/edi/internal/wiki/WriteEdifactExampleTest.java | package io.xlate.edi.internal.wiki;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import org.junit.jupiter.api.Test;
import io.xlate.edi.stream.EDIOutputFa... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/wiki/package-info.java | src/test/java/io/xlate/edi/internal/wiki/package-info.java | package io.xlate.edi.internal.wiki;
| java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/wiki/ReadInterchangeAcknowledgementTest.java | src/test/java/io/xlate/edi/internal/wiki/ReadInterchangeAcknowledgementTest.java | package io.xlate.edi.internal.wiki;
import static org.junit.jupiter.api.Assertions.assertTrue;
// import java.io.FileInputStream;
import java.io.InputStream;
import org.junit.jupiter.api.Test;
import io.xlate.edi.stream.EDIInputFactory;
import io.xlate.edi.stream.EDIStreamEvent;
import io.xlate.edi.stream.EDIStream... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/wiki/WriteInterchangeAcknowledgementTest.java | src/test/java/io/xlate/edi/internal/wiki/WriteInterchangeAcknowledgementTest.java | package io.xlate.edi.internal.wiki;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.io.ByteArrayOutputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import org.junit.jupiter.api.Test;
import io.xlate.edi.stream.EDIOutputFactory;
import io.xlate.edi.stream.EDIStreamConstants... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/wiki/ReadFuncAcknowledgementTest.java | src/test/java/io/xlate/edi/internal/wiki/ReadFuncAcknowledgementTest.java | package io.xlate.edi.internal.wiki;
import java.io.InputStream;
import java.util.ArrayDeque;
import java.util.Collections;
import java.util.Deque;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import javax.json.Json;
import javax.json.JsonArrayBuilder;
import javax.json.JsonObject;
import java... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/StaEDISchemaTest.java | src/test/java/io/xlate/edi/internal/schema/StaEDISchemaTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/StructureTypeTest.java | src/test/java/io/xlate/edi/internal/schema/StructureTypeTest.java | package io.xlate.edi.internal.schema;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNotSame;
import static org.junit.jupiter.api.Assertions.assertNull;
import java.io.ByteArrayInputStream;... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/ClasspathURLStreamHandlerTest.java | src/test/java/io/xlate/edi/internal/schema/ClasspathURLStreamHandlerTest.java | package io.xlate.edi.internal.schema;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/ElementTypeTest.java | src/test/java/io/xlate/edi/internal/schema/ElementTypeTest.java | package io.xlate.edi.internal.schema;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import java.io.ByteArrayInputStream;
import java.util.ArrayList;
import java.util.Collections;
imp... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/StaEDISchemaFactoryTest.java | src/test/java/io/xlate/edi/internal/schema/StaEDISchemaFactoryTest.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | true |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/SyntaxRestrictionTest.java | src/test/java/io/xlate/edi/internal/schema/SyntaxRestrictionTest.java | package io.xlate.edi.internal.schema;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.junit.jupiter.api.Test;
import io.xlate.edi.schema.EDISyntaxRule;
... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/implementation/SegmentImplTest.java | src/test/java/io/xlate/edi/internal/schema/implementation/SegmentImplTest.java | package io.xlate.edi.internal.schema.implementation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.io.ByteArrayInputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.junit.jupiter.api.Test;
import io.xlate.edi.schema.... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/implementation/ElementImplTest.java | src/test/java/io/xlate/edi/internal/schema/implementation/ElementImplTest.java | package io.xlate.edi.internal.schema.implementation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertNotSame;
import static org.junit.jupiter.api.Assertions.assertNull;
import java.io.Byte... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/test/java/io/xlate/edi/internal/schema/implementation/DiscriminatorImplTest.java | src/test/java/io/xlate/edi/internal/schema/implementation/DiscriminatorImplTest.java | package io.xlate.edi.internal.schema.implementation;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import java.util.Arrays;
import java.util.Collections;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java9/module-info.java | src/main/java9/module-info.java | /**
* StAEDI is a streaming API for EDI reading, writing, and validation in Java.
*
* @author Michael Edgar
* @see <a href="https://github.com/xlate/staedi" target="_blank">StAEDI on GitHub</a>
*/
module io.xlate.staedi {
requires java.base;
requires java.logging;
requires transitive java.xml;
exp... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/PropertySupport.java | src/main/java/io/xlate/edi/stream/PropertySupport.java | /*******************************************************************************
* Copyright 2020 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIStreamReader.java | src/main/java/io/xlate/edi/stream/EDIStreamReader.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIInputFactory.java | src/main/java/io/xlate/edi/stream/EDIInputFactory.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/Location.java | src/main/java/io/xlate/edi/stream/Location.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIReporter.java | src/main/java/io/xlate/edi/stream/EDIReporter.java | package io.xlate.edi.stream;
/**
* This interface is used to report non-fatal errors detected in an EDI input.
*
* @since 1.4
* @deprecated implement EDIInputErrorReporter instead. This interface will be
* removed in a future version of StAEDI.
*/
@SuppressWarnings({ "java:S1123", "java:S1133" })
@De... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDINamespaces.java | src/main/java/io/xlate/edi/stream/EDINamespaces.java | package io.xlate.edi.stream;
import java.util.Arrays;
import java.util.List;
/**
* Defines the constant values of namespaces for each of the XML elements
* generated by the XMLStreamReader (created via
* {@link EDIInputFactory#createXMLStreamReader(EDIStreamReader)} and consumed
* by the XMLStreamWriter (created ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIInputErrorReporter.java | src/main/java/io/xlate/edi/stream/EDIInputErrorReporter.java | package io.xlate.edi.stream;
/**
* This interface is used to report non-fatal errors detected in an EDI input.
*
* @since 1.9
*/
public interface EDIInputErrorReporter {
/**
* Report the desired message in an application specific format. Only
* warnings and non-fatal errors should be reported through... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIStreamEvent.java | src/main/java/io/xlate/edi/stream/EDIStreamEvent.java | package io.xlate.edi.stream;
/**
* Enumeration of stream event types that may be encountered by the
* EDIStreamReader.
*
* @see EDIStreamReader#next()
* @see EDIStreamReader#nextTag()
* @see EDIStreamReader#getEventType()
*/
public enum EDIStreamEvent {
/**
* Event for a simple element or component el... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIStreamValidationError.java | src/main/java/io/xlate/edi/stream/EDIStreamValidationError.java | package io.xlate.edi.stream;
/**
* Enumeration of validation error types that may be encountered by the
* EDIStreamReader or EDIStreamWriter.
*
* @see EDIStreamReader#getErrorType()
* @see EDIInputErrorReporter#report(EDIStreamValidationError, EDIStreamReader)
* @see EDIOutputErrorReporter#report(EDIStreamValida... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIStreamException.java | src/main/java/io/xlate/edi/stream/EDIStreamException.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIValidationException.java | src/main/java/io/xlate/edi/stream/EDIValidationException.java | package io.xlate.edi.stream;
/**
* Runtime exception that may occur when reading or writing EDI any the EDI
* error event would not otherwise be handled by an application. For example,
* when writing EDI and no {@linkplain EDIOutputErrorReporter} is in use.
*/
public class EDIValidationException extends RuntimeExc... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIStreamFilter.java | src/main/java/io/xlate/edi/stream/EDIStreamFilter.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIOutputErrorReporter.java | src/main/java/io/xlate/edi/stream/EDIOutputErrorReporter.java | package io.xlate.edi.stream;
import io.xlate.edi.schema.EDIReference;
/**
* This interface is used to report non-fatal errors detected in an EDI input.
*
* @since 1.9
*/
public interface EDIOutputErrorReporter {
/**
* Report the desired message in an application specific format. Only
* warnings and ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIOutputFactory.java | src/main/java/io/xlate/edi/stream/EDIOutputFactory.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIStreamConstants.java | src/main/java/io/xlate/edi/stream/EDIStreamConstants.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/stream/EDIStreamWriter.java | src/main/java/io/xlate/edi/stream/EDIStreamWriter.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/internal/ThrowingRunnable.java | src/main/java/io/xlate/edi/internal/ThrowingRunnable.java | package io.xlate.edi.internal;
import java.util.function.Function;
/**
* A {@link Runnable} that can throw exceptions/errors. Internal use only.
*
* @param <T>
* the type of exception that may be thrown
*
* @since 1.24
*/
public interface ThrowingRunnable<T extends Exception> {
/**
* Run a... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/internal/stream/StaEDIStreamReader.java | src/main/java/io/xlate/edi/internal/stream/StaEDIStreamReader.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/internal/stream/DocumentNamespaceContext.java | src/main/java/io/xlate/edi/internal/stream/DocumentNamespaceContext.java | package io.xlate.edi.internal.stream;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.xml.namespace.NamespaceContext;
import io.xlate.edi.stream.EDINamespaces;
class DocumentNamespaceContext implements NamespaceContext {
... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | false |
xlate/staedi | https://github.com/xlate/staedi/blob/c23c1fd73e63f17e9b124a3e0c50959d5be83e46/src/main/java/io/xlate/edi/internal/stream/StaEDIStreamWriter.java | src/main/java/io/xlate/edi/internal/stream/StaEDIStreamWriter.java | /*******************************************************************************
* Copyright 2017 xlate.io LLC, http://www.xlate.io
*
* 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
*
* ... | java | Apache-2.0 | c23c1fd73e63f17e9b124a3e0c50959d5be83e46 | 2026-01-05T02:37:40.525758Z | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.