List of usage examples for org.apache.commons.lang3 StringUtils EMPTY
String EMPTY
To view the source code for org.apache.commons.lang3 StringUtils EMPTY.
Click Source Link
From source file:com.aqnote.app.wifianalyzer.wifi.model.WiFiDetailTest.java
@Test public void testGetTitleWithEmptySSID() throws Exception { // setup//from w w w . j a va 2s. c o m fixture = new WiFiDetail(StringUtils.EMPTY, BSSID, WPA, wiFiSignal); // validate assertEquals("*** (" + BSSID + ")", fixture.getTitle()); }
From source file:com.sojw.ahnchangho.core.util.UriUtils.java
/** * Url with param./* ww w . j a v a2 s . c o m*/ * * @param requestURL the request URL * @param queryString the query string * @return the string */ public static String of(final String requestURL, final String queryString) { final String url = StringUtils.defaultIfEmpty(requestURL, StringUtils.EMPTY).toString(); if (Strings.isNullOrEmpty(url)) { return StringUtils.EMPTY; } return url + (queryString == null ? StringUtils.EMPTY : "?" + queryString); }
From source file:com.aqnote.app.wifianalyzer.wifi.graph.channel.ChannelAxisLabel.java
private String findChannel(int value) { WiFiChannels wiFiChannels = wiFiBand.getWiFiChannels(); WiFiChannel wiFiChannel = wiFiChannels.getWiFiChannelByFrequency(value, wiFiChannelPair); if (wiFiChannel == WiFiChannel.UNKNOWN) { return StringUtils.EMPTY; }//from ww w.j av a 2 s . co m int channel = wiFiChannel.getChannel(); Settings settings = MainContext.INSTANCE.getSettings(); String countryCode = settings.getCountryCode(); if (!wiFiChannels.isChannelAvailable(countryCode, channel)) { return StringUtils.EMPTY; } return "" + channel; }
From source file:fm.audiobox.tests.unit.models.UserTests.java
/** * Test all user keys are well parsed./*from w ww .j a va 2 s .c o m*/ * * @throws AudioBoxException the audio box exception * @throws ParseException the parse exception */ @Test public void testAllUserKeysAreWellParsed() throws IOException, ParseException { User user = c.getUser(); assertNotNull(user); assertEquals(3, user.getId()); assertEquals("2013-08-29T18:25:52.079Z", user.getCreatedAt()); long millisCreated = ModelUtil.toUnixTime(new SimpleDateFormat(ModelUtil.AUDIOBOX_DATE_FORMAT), user.getCreatedAt()); assertEquals(1377800752079L, millisCreated); assertEquals("2014-01-21T21:48:58.850Z", user.getUpdatedAt()); long millisUpdated = ModelUtil.toUnixTime(new SimpleDateFormat(ModelUtil.AUDIOBOX_DATE_FORMAT), user.getUpdatedAt()); assertEquals(1390340938850L, millisUpdated); assertEquals("Real Name", user.getRealName()); assertEquals("test@test.com", user.getEmail()); assertEquals("4u770k3n", user.getAuthToken()); assertEquals(60, user.getMediaFilesCount()); assertEquals(13, user.getPlaylistsCount()); assertEquals(5, user.getTotalPlayCount()); assertEquals(StringUtils.EMPTY, user.getCountry()); assertEquals("UTC", user.getTimeZone()); assertEquals("aac,mp3,m4a,flac,mp4,flv,webm", user.getAcceptedExtensions()); assertEquals("audio/aac,audio/mpeg,audio/mp4,audio/flac,video/mp4,video/x-flv,video/webm", user.getAcceptedFormats()); assertEquals("private-abc", user.getCometChannel()); assertEquals("active", user.getSubscriptionState()); assertEquals("audiobox_50", user.getPlan()); assertEquals("000_offline", user.getOfflinePlaylist()); Permissions perms = user.getPermissions(); assertNotNull(perms); assertTrue(perms.hasPlayer()); assertTrue(perms.hasLocal()); assertTrue(perms.hasCloud()); assertTrue(perms.hasDropbox()); assertTrue(perms.hasGdrive()); assertTrue(perms.hasSkydrive()); assertTrue(perms.hasMega()); assertTrue(perms.hasBox()); assertTrue(perms.hasSoundcloud()); assertTrue(perms.hasYoutube()); assertTrue(perms.hasLastfm()); assertTrue(perms.hasTwitchtv()); assertTrue(perms.hasFacebook()); assertTrue(perms.hasTwitter()); assertTrue(perms.hasLyrics()); assertTrue(perms.hasSongkick()); ExternalTokens tks = user.getExternalTokens(); assertNotNull(tks); assertFalse(tks.isDropboxEnabled()); assertTrue(tks.isGdriveEnabled()); assertTrue(tks.isSkydriveEnabled()); assertFalse(tks.isMegaEnabled()); assertFalse(tks.isSoundcloudEnabled()); assertTrue(tks.isYoutubeEnabled()); assertTrue(tks.isBoxEnabled()); assertFalse(tks.isLastfmEnabled()); assertFalse(tks.isTwitchtvEnabled()); assertFalse(tks.isFacebookEnabled()); assertFalse(tks.isTwitterEnabled()); Stats stats = user.getStats(); assertNotNull(stats); assertEquals(5, stats.getTotalPlayCount()); assertEquals(777662290, stats.getDataServedOverall()); assertEquals(777662290, stats.getDataServedThisMonth()); assertEquals(5533908, stats.getBoxDataStoredOverall()); assertEquals(0, stats.getCloudDataStoredOverall()); assertEquals(0, stats.getLocalDataStoredOverall()); assertEquals(5533908, stats.getBoxDataStoredThisMonth()); assertEquals(170368034, stats.getGdriveDataStoredOverall()); assertEquals(0, stats.getMegaDataStoredOverall()); assertEquals(110981727, stats.getDropboxDataStoredOverall()); assertEquals(1500, stats.getYoutubeDataStoredOverall()); assertEquals(2175615, stats.getCloudDataStoredThisMonth()); assertEquals(0, stats.getLocalDataStoredThisMonth()); assertEquals(95088577, stats.getSkydriveDataStoredOverall()); assertEquals(170368034, stats.getGdriveDataStoredThisMonth()); assertEquals(0, stats.getMegaDataStoredThisMonth()); assertEquals(110981727, stats.getDropboxDataStoredThisMonth()); assertEquals(0, stats.getSoundcloudDataStoredOverall()); assertEquals(1500, stats.getYoutubeDataStoredThisMonth()); assertEquals(95088577, stats.getSkydriveDataStoredThisMonth()); assertEquals(0, stats.getSoundcloudDataStoredThisMonth()); Preferences prefs = user.getPreferences(); assertNotNull(prefs); assertEquals("audiobox-fm-blue", prefs.getColor()); assertTrue(prefs.isRepeatEnabled()); assertFalse(prefs.isShuffleEnabled()); assertFalse(prefs.isAutoplayEnabled()); assertTrue(prefs.isPrebufferEnabled()); assertFalse(prefs.isJsDemuxerEnabled()); assertEquals("default", prefs.getTopBarBg()); assertEquals("50", prefs.getVolumeLevel()); assertTrue(prefs.doesAcceptsEmails()); assertFalse(prefs.areTooltipsHidden()); try { prefs.setColor("invalid-value"); fail("Invalid color name should rise an exception"); } catch (Exception e) { assertEquals(IllegalArgumentException.class, e.getClass()); } prefs.setColor("flock-blue"); prefs.setRepeat(false); prefs.setShuffle(true); prefs.setAutoplay(true); prefs.setPrebuffer(false); prefs.setJsDemuxer(true); prefs.setTopBarBg("String"); prefs.setVolumeLevel("String"); prefs.setAcceptEmails(false); prefs.setHideTooltips(true); assertEquals("flock-blue", prefs.getColor()); assertEquals("#4096EE", prefs.getColorValue()); assertEquals(false, prefs.isRepeatEnabled()); assertEquals(true, prefs.isShuffleEnabled()); assertEquals(true, prefs.isAutoplayEnabled()); assertEquals(false, prefs.isPrebufferEnabled()); assertEquals(true, prefs.isJsDemuxerEnabled()); assertEquals("String", prefs.getTopBarBg()); assertEquals("String", prefs.getVolumeLevel()); assertEquals(false, prefs.doesAcceptsEmails()); assertEquals(true, prefs.areTooltipsHidden()); }
From source file:io.github.swagger2markup.spi.MarkupComponent.java
protected String italicText(MarkupDocBuilder markupDocBuilder, String text) { if (StringUtils.isBlank(text)) { return StringUtils.EMPTY; }/*from w w w .ja va 2s .co m*/ return copyMarkupDocBuilder(markupDocBuilder).italicText(text).toString(); }
From source file:com.cognifide.qa.bb.test.actions.BobcatActionsTest.java
@Test public void shouldBeBlankAfterEmptyStringSendKeys() { //when//from ww w.j ava 2 s .c o m actions.sendKeys(inputElement, StringUtils.EMPTY).perform(); //then assertThat(getTextFromInputElement()).isEmpty(); }
From source file:com.walmart.gatling.commons.AgentConfig.java
public String getAbortUrl() { return getGenericUrl("gatling/server/abort", "trackingId", StringUtils.EMPTY); }
From source file:com.atypon.wayf.request.ResponseWriter.java
public <B> void buildSuccess(RoutingContext routingContext, B body) { LOG.debug("Building success message"); Completable/*from w w w . ja v a 2 s .c o m*/ .fromAction(() -> routingContext.response().setStatusCode(200) .putHeader(CONTENT_TYPE_KEY, CONTENT_TYPE_VALUE).putHeader("Link", buildLinkHeaderValue()) .end(body != null ? Json.encodePrettily(body) : StringUtils.EMPTY)) .subscribeOn(Schedulers.io()).subscribe(() -> { }, // Do nothing on success (ex) -> routingContext.fail(ex)); }
From source file:com.googlecode.jsendnsca.MessagePayloadTest.java
@Test public void shouldAllowEmptyMessageToBeSet() throws Exception { final MessagePayload payload = new MessagePayload(); payload.setMessage(StringUtils.EMPTY); }
From source file:com.shenit.commons.utils.CollectionUtils.java
/** * ??//from w w w .j a v a 2s .co m * @param targets * @param delimiter * @return */ public static <T> String join(Collection<T> targets, String delimiter) { if (ValidationUtils.isEmpty(targets)) return StringUtils.EMPTY; StringBuilder builder = new StringBuilder(); for (Iterator<T> iter = targets.iterator(); iter.hasNext();) { builder.append(ShenStrings.str(iter.next())); if (iter.hasNext()) builder.append(delimiter); } return builder.toString(); }