MCPcopy Create free account
hub / github.com/apache/pig / getOutputLocations

Method getOutputLocations

src/org/apache/pig/tools/pigstats/PigStats.java:151–157  ·  view source on GitHub ↗

Returns the list of output locations in the script

()

Source from the content-addressed store, hash-verified

149 * Returns the list of output locations in the script
150 */
151 public List<String> getOutputLocations() {
152 ArrayList<String> locations = new ArrayList<String>();
153 for (OutputStats output : getOutputStats()) {
154 locations.add(output.getLocation());
155 }
156 return Collections.unmodifiableList(locations);
157 }
158
159 /**
160 * Returns the list of output names in the script

Calls 3

getOutputStatsMethod · 0.95
addMethod · 0.65
getLocationMethod · 0.45