Package io.fabric8.kubernetes.api.model
Class ExecActionFluentImpl<A extends ExecActionFluent<A>>
- java.lang.Object
-
- io.fabric8.kubernetes.api.builder.BaseFluent<A>
-
- io.fabric8.kubernetes.api.model.ExecActionFluentImpl<A>
-
- All Implemented Interfaces:
Fluent<A>
,Visitable<A>
,ExecActionFluent<A>
- Direct Known Subclasses:
ExecActionBuilder
,HandlerFluentImpl.ExecNestedImpl
,ProbeFluentImpl.ExecNestedImpl
,WatchEventFluentImpl.ExecActionObjectNestedImpl
public class ExecActionFluentImpl<A extends ExecActionFluent<A>> extends BaseFluent<A> implements ExecActionFluent<A>
-
-
Field Summary
-
Fields inherited from class io.fabric8.kubernetes.api.builder.BaseFluent
_visitables
-
-
Constructor Summary
Constructors Constructor Description ExecActionFluentImpl()
ExecActionFluentImpl(ExecAction instance)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description A
addAllToCommand(Collection<String> items)
A
addNewCommand(String arg1)
A
addNewCommand(StringBuffer arg1)
A
addNewCommand(StringBuilder arg1)
A
addToCommand(int index, String item)
A
addToCommand(String... items)
boolean
equals(Object o)
List<String>
getCommand()
String
getCommand(int index)
String
getFirstCommand()
String
getLastCommand()
String
getMatchingCommand(Predicate<String> predicate)
Boolean
hasCommand()
int
hashCode()
Boolean
hasMatchingCommand(Predicate<String> predicate)
A
removeAllFromCommand(Collection<String> items)
A
removeFromCommand(String... items)
A
setToCommand(int index, String item)
A
withCommand(String... command)
A
withCommand(List<String> command)
-
-
-
Constructor Detail
-
ExecActionFluentImpl
public ExecActionFluentImpl()
-
ExecActionFluentImpl
public ExecActionFluentImpl(ExecAction instance)
-
-
Method Detail
-
addToCommand
public A addToCommand(int index, String item)
- Specified by:
addToCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
setToCommand
public A setToCommand(int index, String item)
- Specified by:
setToCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
addToCommand
public A addToCommand(String... items)
- Specified by:
addToCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
addAllToCommand
public A addAllToCommand(Collection<String> items)
- Specified by:
addAllToCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
removeFromCommand
public A removeFromCommand(String... items)
- Specified by:
removeFromCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
removeAllFromCommand
public A removeAllFromCommand(Collection<String> items)
- Specified by:
removeAllFromCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
getCommand
public List<String> getCommand()
- Specified by:
getCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
getCommand
public String getCommand(int index)
- Specified by:
getCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
getFirstCommand
public String getFirstCommand()
- Specified by:
getFirstCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
getLastCommand
public String getLastCommand()
- Specified by:
getLastCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
getMatchingCommand
public String getMatchingCommand(Predicate<String> predicate)
- Specified by:
getMatchingCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
hasMatchingCommand
public Boolean hasMatchingCommand(Predicate<String> predicate)
- Specified by:
hasMatchingCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
withCommand
public A withCommand(List<String> command)
- Specified by:
withCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
withCommand
public A withCommand(String... command)
- Specified by:
withCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
hasCommand
public Boolean hasCommand()
- Specified by:
hasCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
addNewCommand
public A addNewCommand(String arg1)
- Specified by:
addNewCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
addNewCommand
public A addNewCommand(StringBuilder arg1)
- Specified by:
addNewCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
addNewCommand
public A addNewCommand(StringBuffer arg1)
- Specified by:
addNewCommand
in interfaceExecActionFluent<A extends ExecActionFluent<A>>
-
-