Class BaselineNodeAttributeViewWalker
- java.lang.Object
-
- org.apache.ignite.internal.managers.systemview.walker.BaselineNodeAttributeViewWalker
-
- All Implemented Interfaces:
SystemViewRowAttributeWalker<BaselineNodeAttributeView>
public class BaselineNodeAttributeViewWalker extends Object implements SystemViewRowAttributeWalker<BaselineNodeAttributeView>
Generated byorg.apache.ignite.codegen.SystemViewRowAttributeWalkerGenerator.BaselineNodeAttributeViewattributes walker.- See Also:
BaselineNodeAttributeView
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.ignite.spi.systemview.view.SystemViewRowAttributeWalker
SystemViewRowAttributeWalker.AttributeVisitor, SystemViewRowAttributeWalker.AttributeWithValueVisitor
-
-
Field Summary
Fields Modifier and Type Field Description static StringNAME_FILTERFilter key for attribute "name"static StringNODE_CONSISTENT_ID_FILTERFilter key for attribute "nodeConsistentId"
-
Constructor Summary
Constructors Constructor Description BaselineNodeAttributeViewWalker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcount()List<String>filtrableAttributes()voidvisitAll(BaselineNodeAttributeView row, SystemViewRowAttributeWalker.AttributeWithValueVisitor v)Calls visitor for each row attribute.voidvisitAll(SystemViewRowAttributeWalker.AttributeVisitor v)Calls visitor for each row attribute.
-
-
-
Field Detail
-
NODE_CONSISTENT_ID_FILTER
public static final String NODE_CONSISTENT_ID_FILTER
Filter key for attribute "nodeConsistentId"- See Also:
- Constant Field Values
-
NAME_FILTER
public static final String NAME_FILTER
Filter key for attribute "name"- See Also:
- Constant Field Values
-
-
Method Detail
-
filtrableAttributes
public List<String> filtrableAttributes()
- Specified by:
filtrableAttributesin interfaceSystemViewRowAttributeWalker<BaselineNodeAttributeView>- Returns:
- List of filtrable attributes for this system view.
-
visitAll
public void visitAll(SystemViewRowAttributeWalker.AttributeVisitor v)
Calls visitor for each row attribute.- Specified by:
visitAllin interfaceSystemViewRowAttributeWalker<BaselineNodeAttributeView>- Parameters:
v- Attribute visitor.
-
visitAll
public void visitAll(BaselineNodeAttributeView row, SystemViewRowAttributeWalker.AttributeWithValueVisitor v)
Calls visitor for each row attribute. Value of the attribute also provided.- Specified by:
visitAllin interfaceSystemViewRowAttributeWalker<BaselineNodeAttributeView>- Parameters:
row- Row to iterate.v- Attribute visitor.
-
count
public int count()
- Specified by:
countin interfaceSystemViewRowAttributeWalker<BaselineNodeAttributeView>- Returns:
- Count of a row properties.
-
-