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

com.mesour.intellij.util.Pair Maven / Gradle / Ivy

Go to download

A application used as an example on how to set up pushing its components to the Central Repository.

The newest version!
package com.mesour.intellij.util;

import com.intellij.psi.tree.IElementType;

public class Pair extends com.intellij.openapi.util.Pair {
    public Pair(T first, E second) {
        super(first, second);
    }

    public static Pair of(IElementType first, String second) {
        return new Pair<>(first, second);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy