Home | History | Annotate | Download | only in model

Lines Matching defs:options

41   private SortedMap<String, String> options;
47 this.options = Maps.newTreeMap();
52 this.options = Maps.newTreeMap(builder.options);
59 public ImmutableSortedMap<String, String> options() {
60 return ImmutableSortedMap.copyOf(options);
69 && this.options.equals(that.options);
80 .putObject(options, StringMapFunnel.INSTANCE)
93 .add("options", options)
99 private final SortedMap<String, String> options = Maps.newTreeMap();
111 this.options.put(option, value);
115 public Builder addAllOptions(Map<String, String> options) {
116 this.options.putAll(options);