Skip to content
Snippets Groups Projects
Select Git revision
  • 7fa3f42505164895a6c54460dd740bfca00e5a0e
  • main default protected
  • 1.8.5
  • 1.8.4
  • 1.8.3
  • 1.8.2
  • 1.8.1
  • 1.8.0
  • 1.7.14
  • 1.7.13
  • 1.7.12
  • 1.7.11
  • 1.7.10
  • 1.7.9
  • 1.7.8
  • 1.7.7
  • 1.7.6
  • 1.7.5
  • 1.7.4
  • 1.7.3
  • 1.7.2
  • 1.7.1
22 results

Inputs.java

Blame
  • Inputs.java 621 B
    
    
    import java.lang.StringBuilder;
    
    
    class Inputs
    {
       String pubdid;
       Coord coord;
       boolean countNullValues;
       AuthPolicy auth;
    
       public Inputs(AuthPolicy auth, String pubdid, Coord coord, boolean countNullValues)
       {
          this.pubdid = pubdid;
          this.coord = coord;
          this.countNullValues = countNullValues;
          this.auth = auth;
       }
    
       public Inputs(AuthPolicy auth, Coord coord, boolean countNullValues)
       {
          this(auth, null, coord, countNullValues);
       }
    
       public Inputs(String pubdid, Coord coord, boolean countNullValues)
       {
          this(null, pubdid, coord, countNullValues);
       }
    
    }