Interface Options

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<Options>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<OvsdbPortInterfaceAttributes>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<OptionsKey>

    public interface Options
    extends org.opendaylight.yangtools.yang.binding.ChildOf<OvsdbPortInterfaceAttributes>, org.opendaylight.yangtools.yang.binding.Augmentable<Options>, org.opendaylight.yangtools.yang.binding.Identifiable<OptionsKey>
    Port/Interface related optional input values

    This class represents the following YANG schema fragment defined in module ovsdb

     list options {
       key option;
       leaf option {
         type string;
       }
       leaf value {
         type string;
       }
     }
     
    The schema path to identify an instance is ovsdb/ovsdb-port-interface-attributes/options

    To create instances of this class use OptionsBuilder.

    See Also:
    OptionsBuilder, OptionsKey
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default Class<Options> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getOption

        @Nullable String getOption()
        Option name
        Returns:
        java.lang.String option, or null if not present
      • getValue

        @Nullable String getValue()
        Option value
        Returns:
        java.lang.String value, or null if not present
      • key

        OptionsKey key()
        Specified by:
        key in interface org.opendaylight.yangtools.yang.binding.Identifiable<OptionsKey>