com.intellij.util.io.socketConnection.ConnectionStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platform-impl Show documentation
Show all versions of platform-impl Show documentation
A packaging of the IntelliJ Community Edition platform-impl library.
This is release number 1 of trunk branch 142.
The newest version!
package com.intellij.util.io.socketConnection;
import org.jetbrains.annotations.NotNull;
public enum ConnectionStatus {
NOT_CONNECTED("Not connected"),
WAITING_FOR_CONNECTION("Waiting for connection"),
CONNECTED("Connected"),
DISCONNECTED("Disconnected"),
CONNECTION_FAILED("Connection failed"),
DETACHED("Detached");
private final String myStatusText;
ConnectionStatus(@NotNull String statusText) {
myStatusText = statusText;
}
@NotNull
public String getStatusText() {
return myStatusText;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy