Tabnine Logo
JsonConversionUtilTest.assertJsonEquals
Code IndexAdd Tabnine to your IDE (free)

How to use
assertJsonEquals
method
in
org.apache.shindig.common.util.JsonConversionUtilTest

Best Java code snippets using org.apache.shindig.common.util.JsonConversionUtilTest.assertJsonEquals (Showing top 20 results out of 315)

origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void testSimplePathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a.a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:{}}}"));
}
origin: apache/shindig

@Test
public void testSimplePathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a.a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:{}}}"));
}
origin: org.apache.shindig/shindig-common

@Test
public void testSimplePathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a.a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:{}}}"));
}
origin: org.gatein.shindig/shindig-common

@Test
public void testSimplePathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a.a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:{}}}"));
}
origin: com.lmco.shindig/shindig-common

@Test
public void testSimplePathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a.a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:{}}}"));
}
origin: org.apache.shindig/shindig-common

@Test
public void testParameterMapToJsonParsing()
  throws Exception {
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "1")),
   new JSONObject("{a:{b:{c:1}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "\"1\"")),
   new JSONObject("{a:{b:{c:\"1\"}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "true")),
   new JSONObject("{a:{b:{c:true}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "false")),
   new JSONObject("{a:{b:{c:false}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "null")),
   new JSONObject("{a:{b:{c:null}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b(0).c", "hello", "a.b(1).c", "hello")),
   new JSONObject("{a:{b:[{c:\"hello\"},{c:\"hello\"}]}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "hello, true, false, null, 1,2, \"null\", \"()\"")),
   new JSONObject("{a:{b:{c:[\"hello\",true,false,null,1,2,\"null\",\"()\"]}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "\"hello, true, false, null, 1,2\"")),
   new JSONObject("{a:{b:{c:\"hello, true, false, null, 1,2\"}}}"));
}
origin: org.gatein.shindig/shindig-common

@Test
public void testParameterMapToJsonParsing()
  throws Exception {
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "1")),
   new JSONObject("{a:{b:{c:1}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "\"1\"")),
   new JSONObject("{a:{b:{c:\"1\"}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "true")),
   new JSONObject("{a:{b:{c:true}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "false")),
   new JSONObject("{a:{b:{c:false}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "null")),
   new JSONObject("{a:{b:{c:null}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b(0).c", "hello", "a.b(1).c", "hello")),
   new JSONObject("{a:{b:[{c:\"hello\"},{c:\"hello\"}]}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "hello, true, false, null, 1,2, \"null\", \"()\"")),
   new JSONObject("{a:{b:{c:[\"hello\",true,false,null,1,2,\"null\",\"()\"]}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "\"hello, true, false, null, 1,2\"")),
   new JSONObject("{a:{b:{c:\"hello, true, false, null, 1,2\"}}}"));
}
origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void testParameterMapToJsonParsing()
  throws Exception {
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "1")),
   new JSONObject("{a:{b:{c:1}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "\"1\"")),
   new JSONObject("{a:{b:{c:\"1\"}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "true")),
   new JSONObject("{a:{b:{c:true}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "false")),
   new JSONObject("{a:{b:{c:false}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "null")),
   new JSONObject("{a:{b:{c:null}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b(0).c", "hello", "a.b(1).c", "hello")),
   new JSONObject("{a:{b:[{c:\"hello\"},{c:\"hello\"}]}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "hello, true, false, null, 1,2, \"null\", \"()\"")),
   new JSONObject("{a:{b:{c:[\"hello\",true,false,null,1,2,\"null\",\"()\"]}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "\"hello, true, false, null, 1,2\"")),
   new JSONObject("{a:{b:{c:\"hello, true, false, null, 1,2\"}}}"));
}
origin: org.apache.shindig/shindig-common

@Test
public void testArrayPathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a(0).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(1).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(2).a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:[{},{},{}]}}"));
}
origin: apache/shindig

@Test
public void testParameterMapToJsonParsing()
  throws Exception {
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "1")),
   new JSONObject("{a:{b:{c:1}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "\"1\"")),
   new JSONObject("{a:{b:{c:\"1\"}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "true")),
   new JSONObject("{a:{b:{c:true}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "false")),
   new JSONObject("{a:{b:{c:false}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "null")),
   new JSONObject("{a:{b:{c:null}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b(0).c", "hello", "a.b(1).c", "hello")),
   new JSONObject("{a:{b:[{c:\"hello\"},{c:\"hello\"}]}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "hello, true, false, null, 1,2, \"null\", \"()\"")),
   new JSONObject("{a:{b:{c:[\"hello\",true,false,null,1,2,\"null\",\"()\"]}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "\"hello, true, false, null, 1,2\"")),
   new JSONObject("{a:{b:{c:\"hello, true, false, null, 1,2\"}}}"));
}
origin: com.lmco.shindig/shindig-common

@Test
public void testArrayPathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a(0).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(1).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(2).a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:[{},{},{}]}}"));
}
origin: org.apache.shindig/shindig-common

@Test
public void testValueToJsonParsing()
  throws Exception {
 String longNumber = "108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longNumber), longNumber);
 String longDoubleOverflow = "108502345354398668456.1234";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleOverflow),
   longDoubleOverflow);
 String longDoubleFractionPart = "1.108502345354398668456108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleFractionPart),
   longDoubleFractionPart);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12345"), 12345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12.345"), 12.345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("abc"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("\"a,b,c\""), "a,b,c");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("true"), true);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("false"), false);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("null"), JSONObject.NULL);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("'abc'"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("a,b,c"),
   new JSONArray(Lists.newArrayList("a", "b", "c")));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("1,2,3,true,false,null"),
   new JSONArray(Lists.<Object>newArrayList(1, 2, 3, true,
     false, null)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(1)"),
   new JSONArray(Lists.newArrayList(1)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(true)"),
   new JSONArray(Lists.newArrayList(true)));
}
origin: org.gatein.shindig/shindig-common

@Test
public void testArrayPathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a(0).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(1).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(2).a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:[{},{},{}]}}"));
}
origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void testArrayPathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a(0).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(1).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(2).a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:[{},{},{}]}}"));
}
origin: org.gatein.shindig/shindig-common

@Test
public void testValueToJsonParsing()
  throws Exception {
 String longNumber = "108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longNumber), longNumber);
 String longDoubleOverflow = "108502345354398668456.1234";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleOverflow),
   longDoubleOverflow);
 String longDoubleFractionPart = "1.108502345354398668456108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleFractionPart),
   longDoubleFractionPart);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12345"), 12345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12.345"), 12.345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("abc"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("\"a,b,c\""), "a,b,c");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("true"), true);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("false"), false);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("null"), JSONObject.NULL);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("'abc'"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("a,b,c"),
   new JSONArray(Lists.newArrayList("a", "b", "c")));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("1,2,3,true,false,null"),
   new JSONArray(Lists.<Object>newArrayList(1, 2, 3, true,
     false, null)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(1)"),
   new JSONArray(Lists.newArrayList(1)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(true)"),
   new JSONArray(Lists.newArrayList(true)));
}
origin: com.lmco.shindig/shindig-common

@Test
public void testParameterMapToJsonParsing()
  throws Exception {
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "1")),
   new JSONObject("{a:{b:{c:1}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "\"1\"")),
   new JSONObject("{a:{b:{c:\"1\"}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "true")),
   new JSONObject("{a:{b:{c:true}}}"));
 assertJsonEquals(
   JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "false")),
   new JSONObject("{a:{b:{c:false}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(ImmutableMap.of("a.b.c", "null")),
   new JSONObject("{a:{b:{c:null}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b(0).c", "hello", "a.b(1).c", "hello")),
   new JSONObject("{a:{b:[{c:\"hello\"},{c:\"hello\"}]}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "hello, true, false, null, 1,2, \"null\", \"()\"")),
   new JSONObject("{a:{b:{c:[\"hello\",true,false,null,1,2,\"null\",\"()\"]}}}"));
 assertJsonEquals(JsonConversionUtil.parametersToJsonObject(
   ImmutableMap.of("a.b.c", "\"hello, true, false, null, 1,2\"")),
   new JSONObject("{a:{b:{c:\"hello, true, false, null, 1,2\"}}}"));
}
origin: apache/shindig

@Test
public void testArrayPathToJsonParsing()
  throws Exception {
 JSONObject root = new JSONObject();
 JsonConversionUtil.buildHolder(root, "a.a(0).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(1).a".split("\\."), 0);
 JsonConversionUtil.buildHolder(root, "a.a(2).a".split("\\."), 0);
 assertJsonEquals(root, new JSONObject("{a:{a:[{},{},{}]}}"));
}
origin: com.lmco.shindig/shindig-common

@Test
public void testValueToJsonParsing()
  throws Exception {
 String longNumber = "108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longNumber), longNumber);
 String longDoubleOverflow = "108502345354398668456.1234";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleOverflow),
   longDoubleOverflow);
 String longDoubleFractionPart = "1.108502345354398668456108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleFractionPart),
   longDoubleFractionPart);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12345"), 12345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12.345"), 12.345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("abc"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("\"a,b,c\""), "a,b,c");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("true"), true);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("false"), false);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("null"), JSONObject.NULL);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("'abc'"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("a,b,c"),
   new JSONArray(Lists.newArrayList("a", "b", "c")));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("1,2,3,true,false,null"),
   new JSONArray(Lists.<Object>newArrayList(1, 2, 3, true,
     false, null)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(1)"),
   new JSONArray(Lists.newArrayList(1)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(true)"),
   new JSONArray(Lists.newArrayList(true)));
}
origin: org.wso2.org.apache.shindig/shindig-common

@Test
public void testValueToJsonParsing()
  throws Exception {
 String longNumber = "108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longNumber), longNumber);
 String longDoubleOverflow = "108502345354398668456.1234";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleOverflow),
   longDoubleOverflow);
 String longDoubleFractionPart = "1.108502345354398668456108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleFractionPart),
   longDoubleFractionPart);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12345"), 12345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12.345"), 12.345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("abc"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("\"a,b,c\""), "a,b,c");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("true"), true);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("false"), false);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("null"), JSONObject.NULL);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("'abc'"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("a,b,c"),
   new JSONArray(Lists.newArrayList("a", "b", "c")));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("1,2,3,true,false,null"),
   new JSONArray(Lists.<Object>newArrayList(1, 2, 3, true,
     false, null)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(1)"),
   new JSONArray(Lists.newArrayList(1)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(true)"),
   new JSONArray(Lists.newArrayList(true)));
}
origin: apache/shindig

@Test
public void testValueToJsonParsing()
  throws Exception {
 String longNumber = "108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longNumber), longNumber);
 String longDoubleOverflow = "108502345354398668456.1234";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleOverflow),
   longDoubleOverflow);
 String longDoubleFractionPart = "1.108502345354398668456108502345354398668456";
 assertJsonEquals(JsonConversionUtil.convertToJsonValue(longDoubleFractionPart),
   longDoubleFractionPart);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12345"), 12345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("12.345"), 12.345);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("abc"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("\"a,b,c\""), "a,b,c");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("true"), true);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("false"), false);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("null"), JSONObject.NULL);
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("'abc'"), "abc");
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("a,b,c"),
   new JSONArray(Lists.newArrayList("a", "b", "c")));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("1,2,3,true,false,null"),
   new JSONArray(Lists.<Object>newArrayList(1, 2, 3, true,
     false, null)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(1)"),
   new JSONArray(Lists.newArrayList(1)));
 assertJsonEquals(JsonConversionUtil.convertToJsonValue("(true)"),
   new JSONArray(Lists.newArrayList(true)));
}
org.apache.shindig.common.utilJsonConversionUtilTestassertJsonEquals

Popular methods of JsonConversionUtilTest

  • assertEquals
  • assertNotNull
  • assertNull
  • assertTrue

Popular in Java

  • Running tasks concurrently on multiple threads
  • putExtra (Intent)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • compareTo (BigDecimal)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Path (java.nio.file)
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now