View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   //  Generated by Modello Velocity from model.vm
3   //  template, any modifications will be overwritten.
4   // ==============================================================
5   package org.apache.maven.api.model;
6   
7   import java.io.Serializable;
8   import java.util.Collections;
9   import java.util.HashMap;
10  import java.util.Map;
11  import java.util.Set;
12  import org.apache.maven.api.annotations.Experimental;
13  import org.apache.maven.api.annotations.Generated;
14  import org.apache.maven.api.annotations.Immutable;
15  import org.apache.maven.api.annotations.Nonnull;
16  import org.apache.maven.api.annotations.NotThreadSafe;
17  import org.apache.maven.api.annotations.ThreadSafe;
18  
19  /**
20   * This is the property specification used to activate a profile. If the value field
21   * is empty, then the existence of the named property will activate the profile, otherwise it
22   * does a case-sensitive match against the property value as well.
23   */
24  @Experimental
25  @Generated @ThreadSafe @Immutable
26  public class ActivationProperty
27      implements Serializable, InputLocationTracker
28  {
29      /**
30       * The name of the property to be used to activate a profile.
31       */
32      final String name;
33      /**
34       * The value of the property required to activate a profile.
35       */
36      final String value;
37      /** Locations (this potentially hides the same name field from the super class) */
38      final Map<Object, InputLocation> locations;
39      /** Location tracking */
40      final InputLocation importedFrom;
41  
42      /**
43        * Constructor for this class, to be called from its subclasses and {@link Builder}.
44        * @see Builder#build()
45        */
46      protected ActivationProperty(Builder builder) {
47          this.name = builder.name != null ? builder.name : (builder.base != null ? builder.base.name : null);
48          this.value = builder.value != null ? builder.value : (builder.base != null ? builder.base.value : null);
49          Map<Object, InputLocation> newlocs = builder.locations != null ? builder.locations : Collections.emptyMap();
50          Map<Object, InputLocation> oldlocs = builder.base != null && builder.base.locations != null ? builder.base.locations : Collections.emptyMap();
51          Map<Object, InputLocation> mutableLocations = new HashMap<>();
52          this.importedFrom = builder.importedFrom;
53          mutableLocations.put("", newlocs.containsKey("") ? newlocs.get("") : oldlocs.get(""));
54          mutableLocations.put("name", newlocs.containsKey("name") ? newlocs.get("name") : oldlocs.get("name"));
55          mutableLocations.put("value", newlocs.containsKey("value") ? newlocs.get("value") : oldlocs.get("value"));
56          this.locations = Collections.unmodifiableMap(mutableLocations);
57      }
58  
59      /**
60       * The name of the property to be used to activate a profile.
61       *
62       * @return a {@code String}
63       */
64      public String getName() {
65          return this.name;
66      }
67  
68      /**
69       * The value of the property required to activate a profile.
70       *
71       * @return a {@code String}
72       */
73      public String getValue() {
74          return this.value;
75      }
76  
77      /**
78       * Gets the location of the specified field in the input source.
79       */
80      public InputLocation getLocation(Object key) {
81          return locations != null ? locations.get(key) : null;
82      }
83  
84      /**
85      * Gets the keys of the locations of the input source.
86      */
87      public Set<Object> getLocationKeys() {
88          return locations != null ? locations.keySet() : null;
89      }
90  
91      /**
92       * Gets the input location that caused this model to be read.
93       */
94      public InputLocation getImportedFrom()
95      {
96          return importedFrom;
97      }
98  
99      /**
100      * Creates a new builder with this object as the basis.
101      *
102      * @return a {@code Builder}
103      */
104     @Nonnull
105     public Builder with() {
106         return newBuilder(this);
107     }
108     /**
109      * Creates a new {@code ActivationProperty} instance using the specified name.
110      *
111      * @param name the new {@code String} to use
112      * @return a {@code ActivationProperty} with the specified name
113      */
114     @Nonnull
115     public ActivationProperty withName(String name) {
116         return newBuilder(this, true).name(name).build();
117     }
118     /**
119      * Creates a new {@code ActivationProperty} instance using the specified value.
120      *
121      * @param value the new {@code String} to use
122      * @return a {@code ActivationProperty} with the specified value
123      */
124     @Nonnull
125     public ActivationProperty withValue(String value) {
126         return newBuilder(this, true).value(value).build();
127     }
128 
129     /**
130      * Creates a new {@code ActivationProperty} instance.
131      * Equivalent to {@code newInstance(true)}.
132      * @see #newInstance(boolean)
133      *
134      * @return a new {@code ActivationProperty}
135      */
136     @Nonnull
137     public static ActivationProperty newInstance() {
138         return newInstance(true);
139     }
140 
141     /**
142      * Creates a new {@code ActivationProperty} instance using default values or not.
143      * Equivalent to {@code newBuilder(withDefaults).build()}.
144      *
145      * @param withDefaults the boolean indicating whether default values should be used
146      * @return a new {@code ActivationProperty}
147      */
148     @Nonnull
149     public static ActivationProperty newInstance(boolean withDefaults) {
150         return newBuilder(withDefaults).build();
151     }
152 
153     /**
154      * Creates a new {@code ActivationProperty} builder instance.
155      * Equivalent to {@code newBuilder(true)}.
156      * @see #newBuilder(boolean)
157      *
158      * @return a new {@code Builder}
159      */
160     @Nonnull
161     public static Builder newBuilder() {
162         return newBuilder(true);
163     }
164 
165     /**
166      * Creates a new {@code ActivationProperty} builder instance using default values or not.
167      *
168      * @param withDefaults the boolean indicating whether default values should be used
169      * @return a new {@code Builder}
170      */
171     @Nonnull
172     public static Builder newBuilder(boolean withDefaults) {
173         return new Builder(withDefaults);
174     }
175 
176     /**
177      * Creates a new {@code ActivationProperty} builder instance using the specified object as a basis.
178      * Equivalent to {@code newBuilder(from, false)}.
179      *
180      * @param from the {@code ActivationProperty} instance to use as a basis
181      * @return a new {@code Builder}
182      */
183     @Nonnull
184     public static Builder newBuilder(ActivationProperty from) {
185         return newBuilder(from, false);
186     }
187 
188     /**
189      * Creates a new {@code ActivationProperty} builder instance using the specified object as a basis.
190      *
191      * @param from the {@code ActivationProperty} instance to use as a basis
192      * @param forceCopy the boolean indicating if a copy should be forced
193      * @return a new {@code Builder}
194      */
195     @Nonnull
196     public static Builder newBuilder(ActivationProperty from, boolean forceCopy) {
197         return new Builder(from, forceCopy);
198     }
199 
200     /**
201      * Builder class used to create ActivationProperty instances.
202      * @see #with()
203      * @see #newBuilder()
204      */
205     @NotThreadSafe
206     public static class Builder
207     {
208         ActivationProperty base;
209         String name;
210         String value;
211         Map<Object, InputLocation> locations;
212         InputLocation importedFrom;
213 
214         protected Builder(boolean withDefaults) {
215             if (withDefaults) {
216             }
217         }
218 
219         protected Builder(ActivationProperty base, boolean forceCopy) {
220             if (forceCopy) {
221                 this.name = base.name;
222                 this.value = base.value;
223                 this.locations = base.locations;
224                 this.importedFrom = base.importedFrom;
225             } else {
226                 this.base = base;
227             }
228         }
229 
230         @Nonnull
231         public Builder name(String name) {
232             this.name = name;
233             return this;
234         }
235 
236         @Nonnull
237         public Builder value(String value) {
238             this.value = value;
239             return this;
240         }
241 
242 
243         @Nonnull
244         public Builder location(Object key, InputLocation location) {
245             if (location != null) {
246                 if (!(this.locations instanceof HashMap)) {
247                     this.locations = this.locations != null ? new HashMap<>(this.locations) : new HashMap<>();
248                 }
249                 this.locations.put(key, location);
250             }
251             return this;
252         }
253 
254         @Nonnull
255         public Builder importedFrom(InputLocation importedFrom) {
256             this.importedFrom = importedFrom;
257             return this;
258         }
259 
260         @Nonnull
261         public ActivationProperty build() {
262             // this method should not contain any logic other than creating (or reusing) an object in order to ease subclassing
263             if (base != null
264                     && (name == null || name == base.name)
265                     && (value == null || value == base.value)
266             ) {
267                 return base;
268             }
269             return new ActivationProperty(this);
270         }
271     }
272 
273 }