Package io.fabric8.kubernetes.api.model
Interface GroupVersionResourceFluent<A extends GroupVersionResourceFluent<A>>
-
- All Superinterfaces:
Fluent<A>
- All Known Subinterfaces:
KubeSchemaFluent.GroupVersionResourceNested<N>
,WatchEventFluent.GroupVersionResourceObjectNested<N>
- All Known Implementing Classes:
GroupVersionResourceBuilder
,GroupVersionResourceFluentImpl
,KubeSchemaFluentImpl.GroupVersionResourceNestedImpl
,WatchEventFluentImpl.GroupVersionResourceObjectNestedImpl
public interface GroupVersionResourceFluent<A extends GroupVersionResourceFluent<A>> extends Fluent<A>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getGroup()
String
getResource()
String
getVersion()
Boolean
hasGroup()
Boolean
hasResource()
Boolean
hasVersion()
A
withGroup(String group)
A
withNewGroup(String arg1)
A
withNewGroup(StringBuffer arg1)
A
withNewGroup(StringBuilder arg1)
A
withNewResource(String arg1)
A
withNewResource(StringBuffer arg1)
A
withNewResource(StringBuilder arg1)
A
withNewVersion(String arg1)
A
withNewVersion(StringBuffer arg1)
A
withNewVersion(StringBuilder arg1)
A
withResource(String resource)
A
withVersion(String version)
-
-
-
Method Detail
-
getGroup
String getGroup()
-
hasGroup
Boolean hasGroup()
-
withNewGroup
A withNewGroup(StringBuilder arg1)
-
withNewGroup
A withNewGroup(StringBuffer arg1)
-
getResource
String getResource()
-
hasResource
Boolean hasResource()
-
withNewResource
A withNewResource(StringBuilder arg1)
-
withNewResource
A withNewResource(StringBuffer arg1)
-
getVersion
String getVersion()
-
hasVersion
Boolean hasVersion()
-
withNewVersion
A withNewVersion(StringBuilder arg1)
-
withNewVersion
A withNewVersion(StringBuffer arg1)
-
-