com.textkernel.tx.models.resume.contactinfo.WebAddress Maven / Gradle / Ivy
Show all versions of tx-java Show documentation
// Copyright © 2023 Textkernel BV. All rights reserved.
// This file is provided for use by, or on behalf of, Textkernel licensees
// within the terms of their license of Textkernel products or Textkernel customers
// within the Terms of Service pertaining to the Textkernel SaaS products.
package com.textkernel.tx.models.resume.contactinfo;
/**
* A web address (URL, twitter handle, etc)
*/
public class WebAddress {
/** The URL or username*/
public String Address;
/**
* The type of address. One of:
* - {@link WebAddressType#PersonalWebsite}
*
- {@link WebAddressType#LinkedIn}
*
- {@link WebAddressType#Twitter}
*
- {@link WebAddressType#GitHub}
*
- {@link WebAddressType#Facebook}
*
- {@link WebAddressType#Skype}
*
- {@link WebAddressType#WhatsApp}
*
- {@link WebAddressType#StackOverflow}
*
- {@link WebAddressType#Instagram}
*
- {@link WebAddressType#Reddit}
*
- {@link WebAddressType#Signal}
*
- {@link WebAddressType#Quora}
*
- {@link WebAddressType#ICQ}
*
- {@link WebAddressType#WeChat}
*
- {@link WebAddressType#QQ}
*
- {@link WebAddressType#Telegraph}
*
- {@link WebAddressType#Telegram}
*
- {@link WebAddressType#MeWe}
*
- {@link WebAddressType#Parler}
*
- {@link WebAddressType#Gab}
*
- {@link WebAddressType#Unknown}
* */
public String Type;
}