@Immutable public interface Domain
Get an item from the domain and manipulate it, for example:
Region region = new Region.Simple(...);
Domain domain = region.domain("employees");
Item employee = domain.item("324");
employee.put("Name", "Jeffrey Lebowski");
for (Map.Entry<String, String> attr : employee.entrySet()) {
System.out.println(attr.getKey() + ": " + attr.getValue());
}Copyright © 2012–2014 jcabi.com. All rights reserved.