
com.mesour.intellij.util.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellij-utils Show documentation
Show all versions of intellij-utils Show documentation
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