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

io.github.oliviercailloux.git.common.GitScheme Maven / Gradle / Ivy

package io.github.oliviercailloux.git.common;

public enum GitScheme {
  FILE, GIT, HTTP, HTTPS, FTP, FTPS, SSH;

  /**
   * Returns this scheme in lower case.
   *
   * @return a lower case string
   */
  @Override
  public String toString() {
    return super.toString().toLowerCase();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy