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

com.princexml.wrapper.Pair Maven / Gradle / Ivy

/*
 * Copyright (C) 2021 YesLogic Pty. Ltd.
 * All rights reserved.
 */

package com.princexml.wrapper;

final class Pair {
    final String fst;
    final String snd;

    Pair(String fst) {
        this(fst, null);
    }

    Pair(String fst, String snd) {
        this.fst = fst;
        this.snd = snd;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy