public abstract class NetworkCreationOptions extends Object
Modifier and Type | Class and Description |
---|---|
static class |
NetworkCreationOptions.Builder |
Modifier and Type | Method and Description |
---|---|
static NetworkCreationOptions |
create(String name,
String description,
String rangeIPv4,
String gatewayIPv4) |
abstract String |
description() |
abstract String |
gatewayIPv4()
This must be within the range specified by IPv4Range, and is typically the first usable address in that range.
|
abstract String |
name() |
abstract String |
rangeIPv4()
The range of internal addresses that are legal on this network.
|
public abstract String name()
public abstract String rangeIPv4()
192.168.0.0/16
.@Nullable public abstract String gatewayIPv4()
public static NetworkCreationOptions create(String name, String description, String rangeIPv4, String gatewayIPv4)
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.