(String execType)
| 73 | } |
| 74 | |
| 75 | public static ExecType fromString(String execType) throws PigException { |
| 76 | Properties properties = PropertiesUtil.loadDefaultProperties(); |
| 77 | properties.setProperty("exectype", execType); |
| 78 | return selectExecType(properties); |
| 79 | } |
| 80 | |
| 81 | } |