Uses of Class
org.openflow.protocol.OFOXMFieldType

Packages that use OFOXMFieldType
net.floodlightcontroller.firewall   
net.floodlightcontroller.routing   
org.openflow.protocol   
org.openflow.protocol.action   
 

Uses of OFOXMFieldType in net.floodlightcontroller.firewall
 

Fields in net.floodlightcontroller.firewall with type parameters of type OFOXMFieldType
 java.util.EnumSet<OFOXMFieldType> NonWildcardsPair.allow
           
 java.util.EnumSet<OFOXMFieldType> NonWildcardsPair.drop
           
 java.util.EnumSet<OFOXMFieldType> RuleWildcardsPair.nonWildcards
           
 

Uses of OFOXMFieldType in net.floodlightcontroller.routing
 

Fields in net.floodlightcontroller.routing with type parameters of type OFOXMFieldType
protected  java.util.EnumSet<OFOXMFieldType> RoutingDecision.nonWildcards
           
 

Methods in net.floodlightcontroller.routing that return types with arguments of type OFOXMFieldType
 java.util.EnumSet<OFOXMFieldType> RoutingDecision.getNonWildcards()
           
 java.util.EnumSet<OFOXMFieldType> IRoutingDecision.getNonWildcards()
           
 

Method parameters in net.floodlightcontroller.routing with type arguments of type OFOXMFieldType
 boolean ForwardingBase.pushRoute(Route route, OFMatch match, java.util.EnumSet<OFOXMFieldType> nonWildcards, OFPacketIn pi, long pinSwitch, long cookie, FloodlightContext cntx, boolean reqeustFlowRemovedNotifn, boolean doFlush, byte flowModCommand)
          Push routes from back to front
 void RoutingDecision.setNonWildcards(java.util.EnumSet<OFOXMFieldType> nonWildcards)
           
 void IRoutingDecision.setNonWildcards(java.util.EnumSet<OFOXMFieldType> wildcards)
           
 

Uses of OFOXMFieldType in org.openflow.protocol
 

Fields in org.openflow.protocol declared as OFOXMFieldType
protected  OFOXMFieldType OFOXMField.type
           
 

Methods in org.openflow.protocol that return OFOXMFieldType
 OFOXMFieldType OFOXMField.getType()
           
static OFOXMFieldType OFOXMFieldType.valueOf(byte i)
          Given a wire protocol field type number, return the OFOXMFieldType associated with it
static OFOXMFieldType OFOXMFieldType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OFOXMFieldType[] OFOXMFieldType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.openflow.protocol with parameters of type OFOXMFieldType
static void OFOXMFieldType.addMapping(short i, OFOXMFieldType mt)
          Adds a mapping from type value to OFOXMFieldType enum
 boolean OFMatch.fieldExists(OFOXMFieldType matchType)
          Check if a particular match field exists
 java.lang.Object OFMatch.getMatchFieldMask(OFOXMFieldType matchType)
          Get mask of particular field
 java.lang.Object OFMatch.getMatchFieldValue(OFOXMFieldType matchType)
          Get value of particular field
 void OFMatch.setField(OFOXMFieldType matchFieldType, java.lang.Object matchFieldValue)
           
 void OFMatch.setField(OFOXMFieldType matchFieldType, java.lang.Object matchFieldValue, java.lang.Object matchFieldMask)
           
 

Method parameters in org.openflow.protocol with type arguments of type OFOXMFieldType
 OFMatch OFMatch.setNonWildcards(java.util.Set<OFOXMFieldType> nonWildcardedFieldTypes)
          Utility function to wildcard all fields except those specified in the set
 

Constructors in org.openflow.protocol with parameters of type OFOXMFieldType
OFMatchField(OFOXMFieldType type, java.lang.Object value)
           
OFMatchField(OFOXMFieldType type, java.lang.Object value, java.lang.Object mask)
           
OFOXMField(OFOXMFieldType type, java.lang.Object value)
           
 

Uses of OFOXMFieldType in org.openflow.protocol.action
 

Constructors in org.openflow.protocol.action with parameters of type OFOXMFieldType
OFActionSetField(OFOXMFieldType type, java.lang.Object value)