- java.lang.Object
- 
- com.sun.nio.sctp.SctpStandardSocketOptions.InitMaxStreams
 
- 
- Enclosing class:
- SctpStandardSocketOptions
 
 public static class SctpStandardSocketOptions.InitMaxStreams extends Object This class is used to set the maximum number of inbound/outbound streams used by the local endpoint during association initialization. An instance of this class is used to set theSCTP_INIT_MAXSTREAMSsocket option.- Since:
- 1.7
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SctpStandardSocketOptions.InitMaxStreamscreate(int maxInStreams, int maxOutStreams)Creates an InitMaxStreams instance.booleanequals(Object obj)Returns true if the specified object is anotherInitMaxStreamsinstance with the same number of in and out bound streams.inthashCode()Returns a hash code value for this init max streams.intmaxInStreams()Returns the maximum number of inbound streams.intmaxOutStreams()Returns the maximum number of outbound streams.StringtoString()Returns a string representation of this init max streams, including the maximum in and out bound streams.
 
- 
- 
- 
Method Detail- 
createpublic static SctpStandardSocketOptions.InitMaxStreams create(int maxInStreams, int maxOutStreams) Creates an InitMaxStreams instance.- Parameters:
- maxInStreams- The maximum number of inbound streams, where- 0 <= maxInStreams <= 65536
- maxOutStreams- The maximum number of outbound streams, where- 0 <= maxOutStreams <= 65536
- Returns:
- An InitMaxStreamsinstance
- Throws:
- IllegalArgumentException- If an argument is outside of specified bounds
 
 - 
maxInStreamspublic int maxInStreams() Returns the maximum number of inbound streams.- Returns:
- Maximum inbound streams
 
 - 
maxOutStreamspublic int maxOutStreams() Returns the maximum number of outbound streams.- Returns:
- Maximum outbound streams
 
 - 
toStringpublic String toString() Returns a string representation of this init max streams, including the maximum in and out bound streams.
 - 
equalspublic boolean equals(Object obj) Returns true if the specified object is anotherInitMaxStreamsinstance with the same number of in and out bound streams.- Overrides:
- equalsin class- Object
- Parameters:
- obj- The object to be compared with this init max streams
- Returns:
- true if the specified object is another
          InitMaxStreamsinstance with the same number of in and out bound streams
- See Also:
- Object.hashCode(),- HashMap
 
 - 
hashCodepublic int hashCode() Returns a hash code value for this init max streams.- Overrides:
- hashCodein class- Object
- Returns:
- a hash code value for this object.
- See Also:
- Object.equals(java.lang.Object),- System.identityHashCode(java.lang.Object)
 
 
- 
 
-