Interface ISVNConfig.Category

Enclosing interface:
ISVNConfig

public static interface ISVNConfig.Category
Interface for reading and modifying configuration categories. Returned by ISVNConfig.config() and ISVNConfig.servers().
  • Method Summary

    Modifier and Type Method Description
    void enumerate​(String section, ISVNConfig.Enumerator handler)
    Call handler once for each option in the configuration category.
    boolean get​(String section, String option, boolean defaultValue)
    Returns the boolean value of a configuration option.
    long get​(String section, String option, long defaultValue)
    Returns the long integer value of a configuration option.
    String get​(String section, String option, String defaultValue)
    Returns the value of a configuration option.
    Tristate get​(String section, String option, String unknown, Tristate defaultValue)
    Returns the Tristate value of a configuration option.
    String getYesNoAsk​(String section, String option, String defaultValue)
    Check that the configuration option's value is true, false or "ask".
    Iterable<String> sections()  
    void set​(String section, String option, boolean value)
    Set the value of a configuration option to represent a boolean.
    void set​(String section, String option, long value)
    Set the value of a configuration option to represent a long integer.
    void set​(String section, String option, String value)
    Set the value of a configuration option.