View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   //  Generated by Modello Velocity from model-v3.vm
3   //  template, any modifications will be overwritten.
4   // ==============================================================
5   package org.apache.maven.model;
6   
7   import java.io.Serializable;
8   import java.util.AbstractList;
9   import java.util.Collections;
10  import java.util.HashMap;
11  import java.util.List;
12  import java.util.Map;
13  import java.util.Objects;
14  import java.util.stream.Collectors;
15  import java.util.stream.Stream;
16  import org.apache.maven.api.annotations.Generated;
17  import org.apache.maven.api.annotations.Nonnull;
18  
19  @Generated
20  public class Prerequisites
21      extends BaseObject
22  {
23  
24      public Prerequisites() {
25          this(org.apache.maven.api.model.Prerequisites.newInstance());
26      }
27  
28      public Prerequisites(org.apache.maven.api.model.Prerequisites delegate) {
29          this(delegate, null);
30      }
31  
32      public Prerequisites(org.apache.maven.api.model.Prerequisites delegate, BaseObject parent) {
33          super(delegate, parent);
34      }
35  
36      public Prerequisites clone(){
37          return new Prerequisites(getDelegate());
38      }
39  
40      public org.apache.maven.api.model.Prerequisites getDelegate() {
41          return (org.apache.maven.api.model.Prerequisites) super.getDelegate();
42      }
43  
44      @Override
45      public boolean equals(Object o) {
46          if (this == o) {
47              return true;
48          }
49          if (o == null || !(o instanceof Prerequisites)) {
50              return false;
51          }
52          Prerequisites that = (Prerequisites) o;
53          return Objects.equals(this.delegate, that.delegate);
54      }
55  
56      @Override
57      public int hashCode() {
58          return getDelegate().hashCode();
59      }
60  
61      public String getMaven() {
62          return getDelegate().getMaven();
63      }
64  
65      public void setMaven(String maven) {
66          if (!Objects.equals(maven, getMaven())) {
67              update(getDelegate().withMaven(maven));
68          }
69      }
70  
71      public InputLocation getLocation(Object key) {
72          org.apache.maven.api.model.InputLocation loc = getDelegate().getLocation(key);
73          return loc != null ? new InputLocation(loc) : null;
74      }
75  
76      public void setLocation(Object key, InputLocation location) {
77          update(org.apache.maven.api.model.Prerequisites.newBuilder(getDelegate(), true)
78                          .location(key, location.toApiLocation()).build());
79      }
80  
81      protected boolean replace(Object oldDelegate, Object newDelegate) {
82          if (super.replace(oldDelegate, newDelegate)) {
83              return true;
84          }
85          return false;
86      }
87  
88      public static List<org.apache.maven.api.model.Prerequisites> prerequisitesToApiV4(List<Prerequisites> list) {
89          return list != null ? new WrapperList<>(list, Prerequisites::getDelegate, Prerequisites::new) : null;
90      }
91  
92      public static List<Prerequisites> prerequisitesToApiV3(List<org.apache.maven.api.model.Prerequisites> list) {
93          return list != null ? new WrapperList<>(list, Prerequisites::new, Prerequisites::getDelegate) : null;
94      }
95  
96  }