Tabnine Logo
IntoImpl.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
com.nhaarman.sqlitebuilder.impl.IntoImpl
constructor

Best Java code snippets using com.nhaarman.sqlitebuilder.impl.IntoImpl.<init> (Showing top 12 results out of 315)

origin: nhaarman/SQLiteBuilder

 @NotNull
 @Override
 public Into into(@Nullable final String databaseName, @NotNull final String tableName) {
  return new IntoImpl(databaseName, tableName, this);
 }
}
origin: nhaarman/SQLiteBuilder

 @NotNull
 @Override
 public Into into(@Nullable final String databaseName, @NotNull final String tableName) {
  return new IntoImpl(databaseName, tableName, this);
 }
}
origin: nhaarman/SQLiteBuilder

 @NotNull
 @Override
 public Into into(@Nullable final String databaseName, @NotNull final String tableName) {
  return new IntoImpl(databaseName, tableName, this);
 }
}
origin: nhaarman/SQLiteBuilder

 @NotNull
 @Override
 public Into into(@Nullable final String databaseName, @NotNull final String tableName) {
  return new IntoImpl(databaseName, tableName, this);
 }
}
origin: nhaarman/SQLiteBuilder

 @NotNull
 @Override
 public Into into(@Nullable final String databaseName, @NotNull final String tableName) {
  return new IntoImpl(databaseName, tableName, this);
 }
}
origin: nhaarman/SQLiteBuilder

 @NotNull
 @Override
 public Into into(@Nullable final String databaseName, @NotNull final String tableName) {
  return new IntoImpl(databaseName, tableName, this);
 }
}
origin: nhaarman/SQLiteBuilder

 @NotNull
 @Override
 public Into into(@Nullable final String databaseName, @NotNull final String tableName) {
  return new IntoImpl(databaseName, tableName, this);
 }
}
origin: nhaarman/SQLiteBuilder

@Test
public void columns_returnsNotNullValue() {
  /* Given */
 IntoImpl into = new IntoImpl(null, "table", mock(SqlPart.class));
 /* When */
 InsertColumns result = into.columns("a", "b");
 /* Then */
 assertThat(result, is(notNullValue()));
}
origin: nhaarman/SQLiteBuilder

 @Test
 public void values_returnsNotNullValue() {
   /* Given */
  IntoImpl into = new IntoImpl(null, "table", mock(SqlPart.class));

  /* When */
  Values result = into.values("a", "b");

  /* Then */
  assertThat(result, is(notNullValue()));
 }
}
origin: nhaarman/SQLiteBuilder

@Test
public void previous_returnsProperItem() {
 /* Given */
 SqlPart sqlPart = mock(SqlPart.class);
 IntoImpl into = new IntoImpl(null, "table", sqlPart);
 /* When */
 SqlPart result = into.previous();
 /* Then */
 assertThat(result, is(sqlPart));
}
origin: nhaarman/SQLiteBuilder

@Test
public void prependTo_table_prependsProperSql() {
 /* Given */
 IntoImpl into = new IntoImpl(null, "table", mock(SqlPart.class));
 RawSqlBuilder builder = new RawSqlBuilderImpl();
 /* When */
 into.prependTo(builder);
 /* Then */
 assertThat(builder.toString(), is("INTO table"));
}
origin: nhaarman/SQLiteBuilder

@Test
public void prependTo_databaseTable_prependsProperSql() {
 /* Given */
 IntoImpl into = new IntoImpl("database", "table", mock(SqlPart.class));
 RawSqlBuilder builder = new RawSqlBuilderImpl();
 /* When */
 into.prependTo(builder);
 /* Then */
 assertThat(builder.toString(), is("INTO database.table"));
}
com.nhaarman.sqlitebuilder.implIntoImpl<init>

Popular methods of IntoImpl

  • columns
  • prependTo
  • previous
  • values

Popular in Java

  • Making http post requests using okhttp
  • getContentResolver (Context)
  • findViewById (Activity)
  • runOnUiThread (Activity)
  • String (java.lang)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top Sublime Text 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