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.settings;
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 ActivationOS
21      extends BaseObject
22  {
23  
24      public ActivationOS()
25      {
26          this( org.apache.maven.api.settings.ActivationOS.newInstance() );
27      }
28  
29      public ActivationOS( org.apache.maven.api.settings.ActivationOS delegate )
30      {
31          this( delegate, null );
32      }
33  
34      public ActivationOS( org.apache.maven.api.settings.ActivationOS delegate, BaseObject parent )
35      {
36          super( delegate, parent );
37      }
38  
39      public ActivationOS clone()
40      {
41          return new ActivationOS( getDelegate() );
42      }
43  
44      public org.apache.maven.api.settings.ActivationOS getDelegate()
45      {
46          return ( org.apache.maven.api.settings.ActivationOS ) super.getDelegate();
47      }
48  
49      @Override
50      public boolean equals( Object o )
51      {
52          if ( this == o )
53          {
54              return true;
55          }
56          if ( o == null || !( o instanceof ActivationOS ) )
57          {
58              return false;
59          }
60          ActivationOS that = ( ActivationOS ) o;
61          return Objects.equals( this.delegate, that.delegate );
62      }
63  
64      @Override
65      public int hashCode()
66      {
67          return getDelegate().hashCode();
68      }
69  
70      public String getName()
71      {
72          return getDelegate().getName();
73      }
74  
75      public void setName( String name )
76      {
77          if ( !Objects.equals( name, getDelegate().getName() ) )
78          {
79              update( getDelegate().withName( name ) );
80          }
81      }
82  
83      public String getFamily()
84      {
85          return getDelegate().getFamily();
86      }
87  
88      public void setFamily( String family )
89      {
90          if ( !Objects.equals( family, getDelegate().getFamily() ) )
91          {
92              update( getDelegate().withFamily( family ) );
93          }
94      }
95  
96      public String getArch()
97      {
98          return getDelegate().getArch();
99      }
100 
101     public void setArch( String arch )
102     {
103         if ( !Objects.equals( arch, getDelegate().getArch() ) )
104         {
105             update( getDelegate().withArch( arch ) );
106         }
107     }
108 
109     public String getVersion()
110     {
111         return getDelegate().getVersion();
112     }
113 
114     public void setVersion( String version )
115     {
116         if ( !Objects.equals( version, getDelegate().getVersion() ) )
117         {
118             update( getDelegate().withVersion( version ) );
119         }
120     }
121 
122     protected boolean replace( Object oldDelegate, Object newDelegate )
123     {
124         if ( super.replace( oldDelegate, newDelegate ) )
125         {
126             return true;
127         }
128         return false;
129     }
130 
131     public static List<org.apache.maven.api.settings.ActivationOS> activationOSToApiV4( List<ActivationOS> list )
132     {
133         return list != null ? new WrapperList<>( list, ActivationOS::getDelegate, ActivationOS::new ) : null;
134     }
135 
136     public static List<ActivationOS> activationOSToApiV3( List<org.apache.maven.api.settings.ActivationOS> list )
137     {
138         return list != null ? new WrapperList<>( list, ActivationOS::new, ActivationOS::getDelegate ) : null;
139     }
140 
141 }