Examples of UnsignedInteger


Examples of org.apache.qpid.proton.type.UnsignedInteger

                    o.setIdleTimeOut( (UnsignedInteger) l.get( 4 ) );
                case 6:
                    UnsignedShort channelMax = (UnsignedShort) l.get(3);
                    o.setChannelMax(channelMax == null ? UnsignedShort.MAX_VALUE : channelMax);
                case 7:
                    UnsignedInteger maxFrameSize = (UnsignedInteger) l.get(2);
                    o.setMaxFrameSize(maxFrameSize == null ? UnsignedInteger.MAX_VALUE : maxFrameSize);
                case 8:
                    o.setHostname( (String) l.get( 1 ) );
                case 9:
                    o.setContainerId( (String) l.get( 0 ) );
View Full Code Here

Examples of org.apache.qpid.proton.type.UnsignedInteger

                    o.setDynamicNodeProperties( (Map) l.get( 5 ) );
                case 2:
                    Boolean dynamic = (Boolean) l.get(4);
                    o.setDynamic(dynamic == null ? false : dynamic);
                case 3:
                    UnsignedInteger timeout = (UnsignedInteger) l.get(3);
                    o.setTimeout(timeout == null ? UnsignedInteger.ZERO : timeout);
                case 4:
                    Symbol expiryPolicy = (Symbol) l.get(2);
                    o.setExpiryPolicy(expiryPolicy == null ? TerminusExpiryPolicy.SESSION_END : expiryPolicy);
                case 5:
                    UnsignedInteger durable = (UnsignedInteger) l.get(1);
                    o.setDurable(durable == null ? TerminusDurability.NONE : durable);
                case 6:
                    o.setAddress( (String) l.get( 0 ) );
            }
View Full Code Here

Examples of org.opcfoundation.ua.builtintypes.UnsignedInteger

                .findFirst()
                .map(gLocalizedText -> LocalizedText.english(gLocalizedText.getValue()))
                .map(localizedText -> Optional.of(localizedText))
                .orElse(Optional.empty());

        Optional<UnsignedInteger> writeMask = Optional.of(new UnsignedInteger(gNode.getWriteMask()));
        Optional<UnsignedInteger> userWriteMask = Optional.of(new UnsignedInteger(gNode.getUserWriteMask()));

        return new NodeAttributes(nodeId, nodeClass, browseName, displayName, description, writeMask, userWriteMask);
    }
View Full Code Here

Examples of propel.core.userTypes.UnsignedInteger

   * @throws NumberFormatException A number could not be parsed.
   */
  @Validate
  public static UnsignedInteger fromBinaryToUInt32(@NotNull final String binary)
  {
    return new UnsignedInteger(new BigInteger(binary, 2));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.