Instantiate a new Vector based on an existing DDF, given a column name. The column name is not verified for correctness; any errors would only show up on actual usage. @param theDDF @param theColumnName
(DDF theDDF, String theColumnName)
| 44 | * @param theColumnName |
| 45 | */ |
| 46 | public Vector(DDF theDDF, String theColumnName) { |
| 47 | this.initialize(theDDF, theColumnName); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Instantiate a new Vector with the given T array. Uses the default engine. |
nothing calls this directly
no test coverage detected