1 28 package org.jvyamlb; 29 30 33 public interface YAMLConfig { 34 YAMLConfig indent(final int indent); 35 int indent(); 36 YAMLConfig useHeader(final boolean useHeader); 37 boolean useHeader(); 38 YAMLConfig useVersion(final boolean useVersion); 39 boolean useVersion(); 40 YAMLConfig version(final String version); 41 String version(); 42 YAMLConfig explicitStart(final boolean expStart); 43 boolean explicitStart(); 44 YAMLConfig explicitEnd(final boolean expEnd); 45 boolean explicitEnd(); 46 YAMLConfig anchorFormat(final String format); 47 String anchorFormat(); 48 YAMLConfig explicitTypes(final boolean expTypes); 49 boolean explicitTypes(); 50 YAMLConfig canonical(final boolean canonical); 51 boolean canonical(); 52 YAMLConfig bestWidth(final int bestWidth); 53 int bestWidth(); 54 YAMLConfig useBlock(final boolean useBlock); 55 boolean useBlock(); 56 YAMLConfig useFlow(final boolean useFlow); 57 boolean useFlow(); 58 YAMLConfig usePlain(final boolean usePlain); 59 boolean usePlain(); 60 YAMLConfig useSingle(final boolean useSingle); 61 boolean useSingle(); 62 YAMLConfig useDouble(final boolean useDouble); 63 boolean useDouble(); 64 } | Popular Tags |