View Javadoc
1   package io.guixer.tools;
2   
3   import javax.annotation.Nullable;
4   
5   public interface ExecuteScriptCommandResult extends CommandResult {
6   
7   	@Nullable
8   	Object get();
9   
10  	int asInt();
11  
12  	String asString();
13  }