public static class MigrateArgs.Builder extends Object
MigrateArgs.| Modifier and Type | Method and Description |
|---|---|
static <K> MigrateArgs<K> |
auth(char[] password)
Creates new
MigrateArgs with AUTH (target authentication) enabled. |
static <K> MigrateArgs<K> |
auth(CharSequence password)
Creates new
MigrateArgs with AUTH (target authentication) enabled. |
static <K> MigrateArgs<K> |
copy()
Creates new
MigrateArgs and enabling COPY. |
static <K> MigrateArgs<K> |
key(K key)
Creates new
MigrateArgs setting a key to migrate. |
static <K> MigrateArgs<K> |
keys(Iterable<K> keys)
Creates new
MigrateArgs setting keys to migrate. |
static <K> MigrateArgs<K> |
keys(K... keys)
Creates new
MigrateArgs setting keys to migrate. |
static <K> MigrateArgs<K> |
replace()
Creates new
MigrateArgs and enabling REPLACE. |
public static <K> MigrateArgs<K> copy()
MigrateArgs and enabling COPY.MigrateArgs with COPY enabled.MigrateArgs.copy()public static <K> MigrateArgs<K> replace()
MigrateArgs and enabling REPLACE.MigrateArgs with REPLACE enabled.MigrateArgs.replace()public static <K> MigrateArgs<K> key(K key)
MigrateArgs setting a key to migrate.key - must not be null.MigrateArgs for key to migrate.MigrateArgs.key(Object)@SafeVarargs public static <K> MigrateArgs<K> keys(K... keys)
MigrateArgs setting keys to migrate.keys - must not be null.MigrateArgs for keys to migrate.MigrateArgs.keys(Object[])public static <K> MigrateArgs<K> keys(Iterable<K> keys)
MigrateArgs setting keys to migrate.keys - must not be null.MigrateArgs for keys to migrate.MigrateArgs.keys(Iterable)public static <K> MigrateArgs<K> auth(CharSequence password)
MigrateArgs with AUTH (target authentication) enabled.MigrateArgs with AUTH (target authentication) enabled.MigrateArgs.auth(CharSequence)public static <K> MigrateArgs<K> auth(char[] password)
MigrateArgs with AUTH (target authentication) enabled.MigrateArgs with AUTH (target authentication) enabled.MigrateArgs.auth(char[])Copyright © 2021 lettuce.io. All rights reserved.