Java Code Examples for com.sun.nio.sctp.SctpSocketOption#type()
The following examples show how to use
com.sun.nio.sctp.SctpSocketOption#type() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SctpNet.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 2
Source File: SctpNet.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 3
Source File: SctpNet.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 4
Source File: SctpNet.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 5
Source File: SctpNet.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 6
Source File: SctpNet.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 7
Source File: SctpNet.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 8
Source File: SctpNet.java From hottub with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 9
Source File: SctpNet.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 10
Source File: SctpNet.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 11
Source File: SctpNet.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 12
Source File: SctpNet.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }
Example 13
Source File: SctpNet.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 6 votes |
static Object getIntOption(int fd, SctpSocketOption<?> name) throws IOException { Class<?> type = name.type(); if (type != Integer.class && type != Boolean.class) throw new AssertionError("Should not reach here"); if (!(name instanceof SctpStdSocketOption)) throw new AssertionError("Should not reach here"); int value = getIntOption0(fd, ((SctpStdSocketOption)name).constValue()); if (type == Integer.class) { return Integer.valueOf(value); } else { return (value == 0) ? Boolean.FALSE : Boolean.TRUE; } }