Package com.google.common.css
Class RecordingSubstitutionMap.Builder
- java.lang.Object
-
- com.google.common.css.RecordingSubstitutionMap.Builder
-
- Enclosing class:
- RecordingSubstitutionMap
public static final class RecordingSubstitutionMap.Builder extends java.lang.ObjectA-la-carte builder.
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RecordingSubstitutionMapbuild()Builds the substitution map based on previous operations on this builder.RecordingSubstitutionMap.BuildershouldRecordMappingForCodeGeneration(com.google.common.base.Predicate<? super java.lang.String> p)True keys that should be treated mapped to themselves instead of passing through Multiple calls AND.RecordingSubstitutionMap.BuilderwithMappings(java.util.Map<? extends java.lang.String,? extends java.lang.String> m)Specifies mappings to initialize the delegate with.RecordingSubstitutionMap.BuilderwithSubstitutionMap(SubstitutionMap d)Specifies the underlying map.
-
-
-
Method Detail
-
withSubstitutionMap
public RecordingSubstitutionMap.Builder withSubstitutionMap(SubstitutionMap d)
Specifies the underlying map. Multiple calls clobber.
-
shouldRecordMappingForCodeGeneration
public RecordingSubstitutionMap.Builder shouldRecordMappingForCodeGeneration(com.google.common.base.Predicate<? super java.lang.String> p)
True keys that should be treated mapped to themselves instead of passing through Multiple calls AND.
-
withMappings
public RecordingSubstitutionMap.Builder withMappings(java.util.Map<? extends java.lang.String,? extends java.lang.String> m)
Specifies mappings to initialize the delegate with. Multiple calls putAll. This can be used to reconstitute a map that was written out byOutputRenamingMapFormat.writeRenamingMap(java.util.Map<java.lang.String, java.lang.String>, java.io.Writer)from the output ofOutputRenamingMapFormat.readRenamingMap(java.io.Reader).
-
build
public RecordingSubstitutionMap build()
Builds the substitution map based on previous operations on this builder.
-
-